小程序
小游戏
企业微信
微信支付
扫描小程序码分享
在网上也搜了一部分,但是都不理想,有没有碰见这类问题的。。。求教
在获取到code之后
根据code,appid,sercet,获取信息。出的这个错
1 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
//java代码
String url = url = "https://api.weixin.qq.com/sns/jscode2session?appid=" + appId + "&secret=" + appSecret + "&js_code=" + code + "&grant_type=authorization_code";
//进行网络请求,访问url接口ResponseEntity<String> responseEntity = restTemplate.exchange(url, HttpMethod.GET, null, String.class);
//结果
<200,{"errcode":40029,"errmsg":"invalid code, hints: [ req_id: ******* ]"},{Connection=[keep-alive], Content-Type=[text/plain], Date=[Mon, 23 Jul 2018 09:34:34 GMT], Content-Length=[76]}>
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
找到问题根源了。是因为我这个小程序之前用的是另一个appid。必须要新建一个小程序才能使用
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
//java代码
String url = url = "https://api.weixin.qq.com/sns/jscode2session?appid=" + appId +
"&secret=" + appSecret + "&js_code=" + code + "&grant_type=authorization_code";
//结果
<200,{"errcode":40029,"errmsg":"invalid code, hints: [ req_id: ******* ]"},{Connection=[keep-alive], Content-Type=[text/plain], Date=[Mon, 23 Jul 2018 09:34:34 GMT], Content-Length=[76]}>
找到问题根源了。是因为我这个小程序之前用的是另一个appid。必须要新建一个小程序才能使用