快速调试微信小程序获取openid功能
时间: 2024-01-22 20:12:28 浏览: 141
1. 开发者工具中打开小程序项目;
2. 在app.js中添加以下代码:
```
App({
globalData: {
openid: null
},
onLaunch: function () {
wx.login({
success: res => {
wx.request({
url: 'https://api.weixin.qq.com/sns/jscode2session',
data: {
appid: '你的小程序appid',
secret: '你的小程序app secret',
js_code: res.code,
grant_type: 'authorization_code'
},
success: res => {
console.log(res);
this.globalData.openid = res.data.openid;
}
})
}
})
}
})
```
3. 在需要获取openid的页面中调用globalData中的openid即可。
```
console.log(getApp().globalData.openid);
```
注意事项:
1. 在微信公众平台中,需要将小程序的AppID和AppSecret配置好,才能成功获取openid;
2. 获取openid需要用户授权,需要在小程序中添加相关授权页面和代码。
阅读全文