微信小游戏API (doing)
1. 登录
wx.login({
success: function(response) {
if (response.code) {
wx.request({
url: 'https://serverurl/login/',
data: {
code: response.code
}
})
} else {
console.log("登录失败" + response.errMsg);
}
},
timeout: 100, //超时时间,单位 ms
fail: function() {
}, // 失败的回调函数
complete: function() {
}, //接口调用结束的回调函数(调用成功、失败都会执行)
});
2. 用户信息
2.1授权
2.2 用户信息
- 需要权限
scope.userInfo
-
wx.getUserInfo({
success: function(res) {
var userInfo = res.userInfo
var nickName = userInfo.nickName // 昵称