各位大佬们,在开发测试中调用 wx.login->wx.request 可以获取到openid, 但发布后获取不到 部分代码如下
wx.login({
success:(res)=>{
let code=res.code
wx.request({
url:`https://api.weixin.qq.com/sns/jscode2session?appid=wx6c6f73fc119a7efd&secret=${that.data.key}&js_code=${code}&grant_type=authorization_code`,
success:(res)=>{
this.setData({
openid:res.data.openid
})
jscode2session这个是后台 用的接口,不能前端直接调用
https://developers.weixin.qq.com/minigame/dev/wxcloud/guide/functions/getting-started.html