微信小程序----用户拒绝授权,重新调起授权

Posted 珺L

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信小程序----用户拒绝授权,重新调起授权相关的知识,希望对你有一定的参考价值。

获取用户信息
wx.getUserInfo({
withCredentials: true,
success: function (res) {
var nickName = res.userInfo.nickName;
var avatarUrl = res.userInfo.avatarUrl;
var gender = res.userInfo.gender;
wx.login({
success: function (res) {
if (res.code) {
var rsaData = _this.rsaData({ code: res.code, wx_appid: _this.globalData.appId, nickName: nickName, gender: gender, avatarUrl: avatarUrl })
wx.request({
url: _this.globalData.domain + "Index/login",
data: {
encrypt_data: rsaData
},
method: "POST",
header: {
‘content-type‘: ‘application/x-www-form-urlencoded‘
},
success: function (res) {
const user_id = res.data.data.user_id;
var openid = res.data.data.openid;
wx.setStorage({
key: ‘user_id‘,
data: user_id,
})
wx.setStorage({
key: ‘openid‘,
data: openid,
})
// 获取会员信息
var rsaData = _this.rsaData({ user_id: user_id })
wx.request({
url: _this.globalData.domain + "user/get_user",
data: {
encrypt_data: rsaData,
token: wx.getStorageSync(‘token‘)
},
header: {
‘content-type‘: ‘application/x-www-form-urlencoded‘
},
method: "POST",
success: function (res) {

},
})
},
})
}
}
})
},
fail: function (res) {
var that = this;
wx.openSetting({
success(res) {
if (!res.authSetting[‘scope.userInfo‘] || !res.authSetting["scope.userLocation"]) {
wx.authorize({
scope: ‘scope.userInfo‘,
success(res) {
// 失败之后再次登入
wx.getUserInfo({
withCredentials: true,
success: function (res) {
var nickName = res.userInfo.nickName;
var avatarUrl = res.userInfo.avatarUrl;
var gender = res.userInfo.gender;
wx.login({
success: function (res) {
if (res.code) {
var rsaData = _this.rsaData({ code: res.code, wx_appid: _this.globalData.appId, nickName: nickName, gender: gender, avatarUrl: avatarUrl })
wx.request({
url: _this.globalData.domain + "Index/login",
data: {
encrypt_data: rsaData
},
method: "POST",
header: {
‘content-type‘: ‘application/x-www-form-urlencoded‘
},
success: function (res) {
const user_id = res.data.data.user_id;
var openid = res.data.data.openid;
wx.setStorage({
key: ‘user_id‘,
data: user_id,
})
wx.setStorage({
key: ‘openid‘,
data: openid,
})
// 获取会员信息
var rsaData = _this.rsaData({ user_id: user_id })
wx.request({
url: _this.globalData.domain + "user/get_user",
data: {
encrypt_data: rsaData,
token: wx.getStorageSync(‘token‘)
},
header: {
‘content-type‘: ‘application/x-www-form-urlencoded‘
},
method: "POST",
success: function (res) {

},
})
},
})
}
}
})
},
})
// 失败之后再次登入
}, fail: (res) => {
/*
* 点击取消之后再次获取user_id 和openid
*/
wx.showModal({
title: ‘警告‘,
content: ‘您点击了拒绝授权,将无法正常使用******的功能体验,请10分钟后再次点击授权,或者删除小程序重新进入‘,
success: function (res) {
if (res.cancel) {
wx.openSetting({
success: (res) => {
// 失败之后再次登入
wx.getUserInfo({
withCredentials: true,
success: function (res) {
var nickName = res.userInfo.nickName;
var avatarUrl = res.userInfo.avatarUrl;
var gender = res.userInfo.gender;
wx.login({
success: function (res) {
if (res.code) {
var rsaData = _this.rsaData({ code: res.code, wx_appid: _this.globalData.appId, nickName: nickName, gender: gender, avatarUrl: avatarUrl })
wx.request({
url: _this.globalData.domain + "Index/login",
data: {
encrypt_data: rsaData
},
method: "POST",
header: {
‘content-type‘: ‘application/x-www-form-urlencoded‘
},
success: function (res) {
const user_id = res.data.data.user_id;
var openid = res.data.data.openid;
wx.setStorage({
key: ‘user_id‘,
data: user_id,
})
wx.setStorage({
key: ‘openid‘,
data: openid,
})
// 获取会员信息
var rsaData = _this.rsaData({ user_id: user_id })
wx.request({
url: _this.globalData.domain + "user/get_user",
data: {
encrypt_data: rsaData,
token: wx.getStorageSync(‘token‘)
},
header: {
‘content-type‘: ‘application/x-www-form-urlencoded‘
},
method: "POST",
success: function (res) {

},
})
},
})
}
}
})
},
})
// 失败之后再次登入
}
})
}
},
})
}
})
}
}
})
}
})

  方法可能有点繁琐,有不足的地方还请多指教

以上是关于微信小程序----用户拒绝授权,重新调起授权的主要内容,如果未能解决你的问题,请参考以下文章

关于微信小程序拒绝授权后,重新授权并获取用户信息

uniapp 用户拒绝授权再次调起授权-语音识别、微信地址、微信附近地址

微信小程序中用户拒绝授权的处理方式

微信小程序用户拒绝授权的官方推荐处理方法

微信小程序授权登录---“允许”或“拒绝”等等操作

微信小程序用户首次进入小程序拒绝授权,如何再次调用授权页面,获取用户信息userInfo