小程序
小游戏
企业微信
微信支付
扫描小程序码分享
获取上传链接和token接口正常:
但是上传的时候始终是data format error
看了nodejs的实现,参数都对应没问题,使用postman测试也是这个结果
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
楼主你的上传图片可以了吗
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
生成json,请不要使用php自带的函数。要自己去组装json字符串。
使用php内置的函数,总是会这样问题的。
你可以尝试一下
public function upload_file($file_path='', $path='/'){
if(empty($file_path)){
return false;
}
if(!file_exists($file_path)){
$content = file_get_contents($file_path);
$path_option = [
'url' => 'https://api.weixin.qq.com/tcb/uploadfile',
'access_token' => $this->access_token
];
$path_json = '{
"env":"'.$this->env.'",
"path":"'.$path.'"
}';
$res_upload = $this->get_curl($path_option, $path_json);
if($res_upload['errcode'] == 0){
$upload_option = [
'url' => $res_upload['url']
$upload_json = [
'key' => $path,
'Signature' => $res_upload['authorization'],
'x-cos-security-token' => $res_upload['token'],
'x-cos-meta-fileid' => $res_upload['cos_file_id'],
'file' => $content,
$res_done = $this->get_curl($upload_option,$upload_json);
print_r($res_done);
}else{
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
楼主你的上传图片可以了吗
第二张图我是和一样用的那个请求,但是也报同样的错误,楼主你是怎么解决的啊
生成json,请不要使用php自带的函数。要自己去组装json字符串。
使用php内置的函数,总是会这样问题的。
你可以尝试一下
public function upload_file($file_path='', $path='/'){
if(empty($file_path)){
return false;
}
if(!file_exists($file_path)){
return false;
}
$content = file_get_contents($file_path);
$path_option = [
'url' => 'https://api.weixin.qq.com/tcb/uploadfile',
'access_token' => $this->access_token
];
$path_json = '{
"env":"'.$this->env.'",
"path":"'.$path.'"
}';
$res_upload = $this->get_curl($path_option, $path_json);
if($res_upload['errcode'] == 0){
$upload_option = [
'url' => $res_upload['url']
];
$upload_json = [
'key' => $path,
'Signature' => $res_upload['authorization'],
'x-cos-security-token' => $res_upload['token'],
'x-cos-meta-fileid' => $res_upload['cos_file_id'],
'file' => $content,
];
$res_done = $this->get_curl($upload_option,$upload_json);
print_r($res_done);
}else{
return false;
}
}
$res = $wxAppApi->cloud->upload_file($file_path,time().'.jpg');