小程序获取微信昵称_小程序获取微信昵称怎么弄

有两种获取用户信息的方案。

1、不包含敏感信息openId 的json对象(包含:nickname、atarUrl等基本信息)

2、包含敏感信息openId的基本信息。

第一种获取方案

1、首先调用wx.login()接口 让用户授权验证,也就是我们肉眼观察到的,你是否对xxxxx授权这种信息。

2、用户成功授权后,调用wx.getUserInfo() 接口获取用户信息。

完整代码如下

wx.login({

success:function(){

wx.getUserInfo({

success:function(res){

var simpleUser = res.userInfo;

console.log(simpleUser.nickName);

}

});

}

});

第二种比较复杂了,需要与后台进行交互才能获得userInfo,但是这种方案获得的数据是完整的(包含openId)。

1、调用wx.login()接口 授权 在success 成功函数的参数中包含code。

2、调用wx.getUserInfo()接口success 函数中包含encryptedData、iv

3、将上述参数传给后台解析,生成userInfo

代码如下

js

var request = require("../../utils/request.js");

wx.login({

success:function(res_login){

if(res_login.code)

{

wx.getUserInfo({

withCredentials:true,

success:function(res_user){

var requestUrl = "/getUserApi/xxx.php";

var jsonData = {

code:res_login.code,

encryptedData:res_user.encryptedData,

iv:res_user.iv

};

request.sPostRequest(requestUrl,jsonData,function(res){

console.log(res.openId);

});

}

})

}

}

})