在写微信第三方平台帮授权的微信小程序进行代码提交审核时:
function submit_audit($accessToken, $data) {
$url = "https://api.weixin.qq.com/wxa/submit_audit?access_token=".$accessToken;
return http_post($url, json_encode($data));
}
$data为
array(1) {
["item_list"]=>
array(1) {
[0]=>
array(6) {
["first_class"]=>
string(6) "工具"
["first_id"]=>
int(287)
["second_class"]=>
string(6) "效率"
["second_id"]=>
int(616)
["tag"]=>
string(13) "test justtest"
["address"]=>
string(17) "pages/index/index"
}
}
}
最后返回
{"errcode":85010,"errmsg":"missing required data hint: [H1wvHa04964525]"}
文档中85010表示“item_list有项目为空”
是我数据传错了吗?授权token,微信小程序开发教程。这里面并没有空项
本文来自微信小程序开发者论坛 微信小程序工厂 http://www.xcxgc.com 转载请保留。
微信小程序开发者回答:
t***:
少填了一个title
本文网址:http://www.91bianli.com/weixinxiaochengxu/57718.html