在微信小程序中获取openid
定义
openid是每一个微信的唯一的id,用来区别当前微信是否是之前的微信
获取步骤
- 获取微信的code——使用wx.login
wx.login({
success(res) {
if (res.errMsg == 'login:ok') {
this.data.code = res.code;
console.log(this.data.code); // 获取到当前code 有了code之后,才能够进行获取当前的openid
// 进行获取openid
wx.request({
url: 'https://api.weixin.qq.com/sns/jscode2session?appid=' + 'wx28fddd46c71a37e6' + '&secret=' + 'd58c7b75d6bf49f433b95a1feb1ae0d8' + '&js_code=' + res.code + '&grant_type=authorization_code',
data: {},
// header: {
// 'content-type': 'json'
// },
success: function (res) {
var openid = res.data.openid //返回openid
console.log('openid ===> ' + openid);
wx.setStorageSync('od', openid)
}
})
},
})