微信小程序获取用户openid
Posted A_山水子农
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信小程序获取用户openid相关的知识,希望对你有一定的参考价值。
1、wx.login(OBJECT)
调用接口获取登录凭证(code)进而换取用户登录态信息,包括用户的唯一标识(openid) 及本次登录的 会话密钥(session_key)。用户数据的加解密通讯需要依赖会话密钥完成。
2、code 换取 session_key
这是一个 HTTPS 接口,开发者服务器使用登录凭证 code 获取 session_key 和 openid。其中 session_key 是对用户数据进行加密签名的密钥。为了自身应用安全,session_key 不应该在网络上传输。
接口地址:
https://api.weixin.qq.com/sns/jscode2session?appid=APPID&secret=SECRET&js_code=JSCODE&grant_type=authorization_code
详细的介绍请看小程序APIhttps://mp.weixin.qq.com/debug/wxadoc/dev/api/api-login.html#wxloginobject
3、获取用户openid实例
//app.js
App(
globalData:
appid:'1wqas2342dasaqwe2323424ac23qwe',//appid需自己提供,此处的appid我随机编写
secret:'e0dassdadef2424234209bwqqweqw123ccqwa',//secret需自己提供,此处的secret我随机编写
,
onLaunch: function ()
var that = this
var user=wx.getStorageSync('user') || ;
var userInfo=wx.getStorageSync('userInfo') || ;
if((!user.openid || (user.expires_in || Date.now()) < (Date.now() + 600))&&(!userInfo.nickName))
wx.login(
success: function(res)
if(res.code)
wx.getUserInfo(
success: function (res)
var objz=;
objz.avatarUrl=res.userInfo.avatarUrl;
objz.nickName=res.userInfo.nickName;
//console.log(objz);
wx.setStorageSync('userInfo', objz);//存储userInfo
);
var d=that.globalData;//这里存储了appid、secret、token串
var l='https://api.weixin.qq.com/sns/jscode2session?appid='+d.appid+'&secret='+d.secret+'&js_code='+res.code+'&grant_type=authorization_code';
wx.request(
url: l,
data: ,
method: 'GET', // OPTIONS, GET, HEAD, POST, PUT, DELETE, TRACE, CONNECT
// header: , // 设置请求的 header
success: function(res)
var obj=;
obj.openid=res.data.openid;
obj.expires_in=Date.now()+res.data.expires_in;
//console.log(obj);
wx.setStorageSync('user', obj);//存储openid
);
else
console.log('获取用户登录态失败!' + res.errMsg)
);
,
)
以上是关于微信小程序获取用户openid的主要内容,如果未能解决你的问题,请参考以下文章