- 调用图片验证接口失败?
api.weixin.qq.com/wxa/img_sec_check 接口调用后,一直接提示: media data missing rid: 5ff815d8-41728925-6fb91bd0" 图片参数没有接收到 $res = self::post($url, ['media' => $_FILES['image']]); $headers = ['Content-Type:application/json']; $ch = curl_init(); curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); // 关键点 curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($data, JSON_UNESCAPED_UNICODE)); // 【* 关键点】 $res = curl_exec($ch); curl_close($ch);
2021-01-08 - 新用户通过扫码支付完成后,返回openid,哪个接口支持这种场景获取unionid ?
新用户通过扫码支付完成后,返回openid,哪个接口支持这种场景获取unionid ? 需要判断已经的有Openid是否同一用户,此时和前端无交互
2020-11-03 - 小程序通过授权码获取用户基本信息accesstoken过程中授权失败api unauthorized
https://developers.weixin.qq.com/doc/oplatform/Mobile_App/WeChat_Login/Authorized_API_call_UnionID.html 你好,根据这个文档中的流程,后端获取用户的基本信息和unionId, 1、小程序前端获取到授权的code,然后把code请求到后端服务器,服务器接口地址已经在小程序公众平台上面做了绑定,然后把code,appid,secret 通过接口 https://api.weixin.qq.com/sns/oauth2/access_token,获取access_token, 第一次返回 {"errcode":48001,"errmsg":"api unauthorized, hints: [ req_id: MenEZ44ce-yQW0aa ]"} 后面就一直接提示code已经使用了 请求下这是什么哪里的出问题了
2020-10-27