原料 :
需要 appid 和 secret
备注:
前端写死appid和secret的话,小程序不给过审。
so,最好是服务端获取openId
wx.login({
success (res) {
wx.request({
url: 'https://api.weixin.qq.com/sns/jscode2session', //固定接口
method: 'get',
data: {
appid: 'appid',
secret: 'secret',
js_code:res.code,
grant_type:'authorization_code'
},
header: {
'content-type': 'application/json' // 默认值
},
success (res) {
console.log( res.data.openid ) // openid
}
})
}
})
写在最后: