这个很简单啊,感觉没有写的必要。。。
如果你可爱猫服务器挂机,可以直接下载,如果你可爱猫本地挂机,则需要挂frp,具体frp 论坛搜“frp”
php简单代码如下
public function getAssets($request){
/*
{
"event": "EventGroupMsg",
"robot_wxid": "wxid_6mkmsto8tyvf52",
"robot_name": null,
"type": 3,
"from_wxid": "18221469840@chatroom",
"from_name": "可爱猫新人接待",
"final_from_wxid": "wxid_xvdt4fwy22",
"final_from_name": "小三",
"to_wxid": "wxid_6mkmsto8tyvf52",
"msgid": "1179125122",
"msg": "D:\\mysoft\\WeChat\\savefiles\\wxid_6mkmsto8tyvf52\\1179125122.jpg"
}
*/
//判断是否为图片、文件等资源类消息,比如上面是一个图片类消息
//下载图片流
//$file = file_get_contents("http://{$this->host}:{$this->port}/get_file?path={$request['msg']}");
$file = file_get_contents("http://127.0.0.1:8090/get_file?path={$request['msg']}");
//保存图片到本地(也有可能是服务器)路径
file_put_contents('~/myfile/'.md5($request['msg']).'.jpg',$file);
}