微信公众号调用接口,48001错误,如何解决? 新注册的服务号,已经完成认证。 按照文档说明,通过https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=APPID&secret=APPSECRET 获取access_token 然后通过 https://api.weixin.qq.com/cgi-bin/user/info?access_token=ACCESS_TOKEN&openid=OPENID...
*/publicstaticStringgetAccessToken(Stringcode) {StringBuffersb =newStringBuffer();//头sb.append("https://api.weixin.qq.com/cgi-bin/token?");//grant_typesb.append("grant_type=client_credential");//appIDsb.append("&appid="+ wechatConfig.getAppID());//secretsb.append("&secret="+ wecha...
appid=APPID&secret=SECRET&code=CODE&grant_type=authorization_code 参数是否必须说明appid是公众号的唯一标识secret是公众号的appsecretcode是填写第一步获取的code参数grant_type是填写为authorization_code 3、刷新access_token(如果需要) 【GET请求】https://api.weixin.qq.com/sns/oauth2/refresh_token?appid=...
appid=APPID&secret=SECRET&code=CODE&grant_type=authorization_code 参数说明 参数是否必须说明 appid 是 公众号的唯一标识 secret 是 公众号的appsecret code 是 填写第一步获取的code参数 grant_type 是 填写为authorization_code 返回说明 正确时返回的JSON数据包如下: { "access_token":"ACCESS_TOKEN", "...
&grant_type=authorization_code // 填写为authorization_code // 返回说明 // 正确时返回的JSON数据包如下: { "access_token":"ACCESS_TOKEN", // 网页授权接口调用凭证,注意:此access_token与基础支持的access_token不同 "expires_in":7200, // access_token接口调用凭证超时时间,单位(秒) ...
接口地址:https://api.weixin.qq.com/sns/oauth2/access_token?appid=APPID&secret=SECRET&code=CODE&grant_type=authorization_code 在请求的时候,我们把appid,secret,code这三个参数设置进去即可。 publicclassWeChatUtil{//公众号唯一标识publicstaticfinalStringAPPID="wx59687be81dd3d388";//公众号的appsecretpu...
1)Get请求:https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=APPID&secret=APPSECRET 2)三个必传参数:grant_type、appid、secret, grant_type=固定值=client_credential appid和secret在微信后台开发者区域可查看 获取json字符串代码 ...
grant_type:获取access_token填写client_credential appid:第三方用户唯一凭证 secret:第三方用户唯一凭证密钥,即appsecret 返回结果 {"access_token":"ACCESS_TOKEN","expires_in":7200} 第四步,获取用户信息 接口调用请求说明 http请求方式:GEThttps://api.weixin.qq.com/cgi-bin/user/info?access_token=ACCESS_...
获取access_token的地址:https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=APPID&secret=APPSECRET 上传图片的地址:https://api.weixin.qq.com/cgi-bin/media/uploadimg?access_token=ACCESS_TOKEN 接下来我们就是真正的编写脚本了,了不起这里是通过Go语言来编写的脚本,短短的几十行...
'grant_type':'client_credential', 'appid':'xxxxxxxxxxxxx', 'secret':'xxxxxxxxxxxxx' } token_url='https://api.weixin.qq.com/cgi-bin/token' r=requests.get(token_url,params=payload_access_token) dict_result= (r.json()) return dict_result['access_token'] ...