上传临时素材就没有问题
$filePath = '../../1.jpg';
$type = "image";
// $type = "thumb";
$filedata = array("media"=>"@".$filePath);
//这个是上传永久素材的
// $url = "https://api.weixin.qq.com/cgi-bin/material/add_material?access_token=$this->access_token&type=".$type;
//这个是上传临时素材,没有问题
// $url = "http://file.api.weixin.qq.com/cgi-bin/media/upload?access_token=".$this->access_token."&type=".$type;
$url = 'https://api.weixin.qq.com/cgi-bin/material/add_material?access_token=' . $this->access_token . '&type=' . $type;
$result = $this->post($url,$filedata);
// media_id = 'HJQDe3hEZ8zdO7BGmaAVd8QS27T3jzXGG4yc5sgiOhLlXWaa7VFtkHxisBErGo_8';
var_dump($result);
上传永久素材就报下面这个错误
string(69) "{"errcode":47001,"errmsg":"data format error hint: [8POVxa0531e565]"}"
微信文档说的是 解析JSON/XML内容错误
可是我没有发送哪里出错了
有人知道是什么原因吗?
这里的错误是指你组装的数据格式错误,好好对比下文档,看下自己哪里错误了。