php - 微信上传永久素材报错
上传临时素材就没有问题
1 2 3 4 5 6 7 8 9 10 11 12 | <code> $filePath = '../../1.jpg' ;
$type = "image" ;
$filedata = array ( "media" => "@" . $filePath );
$url = 'https://api.weixin.qq.com/cgi-bin/material/add_material?access_token=' . $this ->access_token . '&type=' . $type ;
$result = $this ->post( $url , $filedata );
var_dump( $result );</code>
|
上传永久素材就报下面这个错误
1 2 | <code>string(69) "{" errcode ":47001," errmsg ":" data format error hint: [8POVxa0531e565] "}"
</code>
|
微信文档说的是 解析JSON/XML内容错误
可是我没有发送哪里出错了
有人知道是什么原因吗?
PHPz2954 days ago1026