微信小游戏获取用户授权
微信小程序、微信小游戏接口更新wx.getSetting({success: function (res) {var authSetting = res.authSettingif (authSetting['scope.userInfo'] === true) {// 用户已授权,可以直接调用相关 API} else if (authSettin...
·
微信小程序、微信小游戏接口更新
wx.getSetting({
success: function (res) {
var authSetting = res.authSetting
if (authSetting['scope.userInfo'] === true) {
// 用户已授权,可以直接调用相关 API
} else if (authSetting['scope.userInfo'] === false){
// 用户已拒绝授权,再调用相关 API 或者 wx.authorize 会失败,需要引导用户到设置页面打开授权开关
} else {
// 未询问过用户授权,调用相关 API 或者 wx.authorize 会弹窗询问用户
}
}
})
更多推荐
已为社区贡献1条内容
所有评论(0)