category is in invalid format hint微信第三方平台将第三方提交的代码包提交审核出错

时间:2017-09-12 23:20:01   收藏:0   阅读:1474

微信第三方平台通过接口https://api.weixin.qq.com/wxa/submit_audit?access_token=TOKEN将第三方提交的代码包提交审核时一直返回错误码85008的错误信息:

category is in invalid format hint

查了半天是接口提交数据时json_encode时中文不能编码提交
将向微信的提交代码
    $this->https_post($url,json_encode($postData));
改为
    $this->https_post($url,json_encode($postData,JSON_UNESCAPED_UNICODE));
    
问题解决
评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!