获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
[图片]我这样写的一直返回0 是什么原因?
msgSecCheck内容安全检查有bug请解决https://developers.weixin.qq.com/minigame/dev/document/open-api/sec-check/msgSecCheck.html 问题一、文档说用GET访问该接口,调用后错误如下 {"errcode":43002,"errmsg":"require POST method hint: [wFaedA05228960]"} 问题二、改用POST方法调用后,无论输入什么内容(等等),都返回通过。 {"errcode":0,"errmsg":"ok"} AppID: wxd6b53f2145435121 代码片断: public function check($content) { $access_token = $this->AccessToken(); $url = 'https://api.weixin.qq.com/wxa/msg_sec_check?access_token='.$access_token; $data=array( 'content' => $content ); $return = $this->request_post($url,json_encode($data)); return $return; }
2018-07-20