解决了吗我遇到了同样的问题
app端使用微信第三方登陆uni.login 返回code,后端请求微信接口显示code已被使用?当加了onlyAuthorize: true时 app微信登陆返回的code,调用换access_token时,直接返回 无效code {"errcode":40029,"errmsg":"invalid code, rid: 6197798f-24e10143-61af18db"}
2022-04-29解决了吗 我遇到同样的问题
uniapp 获取code错误https://developers.weixin.qq.com/doc/oplatform/Website_App/WeChat_Login/Authorized_Interface_Calling_UnionID.html uni.login({ provider: "weixin", onlyAuthorize: true }).then(res => { res = this.$determine(res) this.errmsg=JSON.stringify(res) if (res.errMsg == 'login:ok') { console.log('code',res.code) } 获取code,给后端,提示code 无效 后端请求: http请求方式: GET https://api.weixin.qq.com/sns/oauth2/access_token?appid=APPID&secret=SECRET&code=CODE&grant_type=authorization_code 返回: {"errcode":40029,"errmsg":"invalid code, rid: 624e907f-08656c40-47262de6"}
2022-04-29我遇到了同样的问题
app 微信授权登陆 40029 ?"errcode"40029"errmsg""invalid code, rid: 613894f9-7076e7c3-0c63f765"} 使用uniapp 自带的微信一键登陆获取信息 没有问题,证明appid,密钥没有错 。但在访问 https://api.weixin.qq.com/sns/oauth2/access_token 时, 将获取到的code,appid,appsecret 参数填入却错误了。 这个可能是错在哪了? 可以帮忙查一下 code获取时的app参数 与链接传入是否一致 接
2022-04-29