【微信小程序获取用户手机号

javascript 复制代码
微信小程序获取用户手机号有2种,一种是前端自己解密,一种是获取后发给后端,后端去解密
重点:要在微信公众平台设置里面绑定微信开放平台账号,不然反解不出来用户手机号

上代码:
<button style="font-size: 16px;" open-type="getPhoneNumber" @getphonenumber="onGetPhoneNumber">授权并获取手机号</button>
import WXBizDataCrypt from "@/util/WXBizDataCrypt.js"
onGetPhoneNumber(e){
	uni.login({
					 provider: 'weixin',
					 success: function ({ code }) {
						uni.request({
							url: 'https://api.weixin.qq.com/sns/jscode2session', // 请求微信服务器
							method: 'GET',
							data: {
								appid: '', //你的小程序的APPID
								secret: '', //你的小程序秘钥secret,  
								js_code: code, //uni.login 登录成功后的code
								grant_type: 'authorization_code' //此处为固定值
							},
							success: (res) => {
								console.log('获取信息', res.data);
								console.log(e, "获取手机号需要的参数");
								let pc = new WXBizDataCrypt('你的小程序的APPID', res.data.session_key);
								let data = pc.decryptData(e.detail.encryptedData, e.detail.iv);
								if (data.phoneNumber != '') {
									console.log(data.phoneNumber)
								}
							}
						});
					 },
					 fail: function (err) {
						 uni.showToast({ title: '请前往小程序使用完整服务', icon: 'none' });
						 reject(err);
					 },
				 })
}

官网文件获取路径

javascript 复制代码
WXBizDataCrypt.js 文件
这个链接里面有解密包或者直接用我下面的代码

var crypto = require('crypto')

function WXBizDataCrypt(appId, sessionKey) {
  this.appId = appId
  this.sessionKey = sessionKey
}

WXBizDataCrypt.prototype.decryptData = function (encryptedData, iv) {
  // base64 decode
  var sessionKey = new Buffer(this.sessionKey, 'base64')
  encryptedData = new Buffer(encryptedData, 'base64')
  iv = new Buffer(iv, 'base64')

  try {
     // 解密
    var decipher = crypto.createDecipheriv('aes-128-cbc', sessionKey, iv)
    // 设置自动 padding 为 true,删除填充补位
    decipher.setAutoPadding(true)
    var decoded = decipher.update(encryptedData, 'binary', 'utf8')
    decoded += decipher.final('utf8')
    
    decoded = JSON.parse(decoded)

  } catch (err) {
    throw new Error('Illegal Buffer')
  }

  if (decoded.watermark.appid !== this.appId) {
    throw new Error('Illegal Buffer')
  }

  return decoded
}

module.exports = WXBizDataCrypt
相关推荐
Mr.Liu640 分钟前
小程序26-事件绑定和事件对象
前端·微信小程序·小程序
Qiu的博客1 小时前
App出现技术问题,这样的中国电信让用户糟心了
android·前端·微信小程序
mini king4 小时前
微信小程序提示 miniprogram-recycle-view 引入失败
微信小程序·小程序
shenweihong6 小时前
微信小程序获取图片使用session(下篇)
微信小程序·小程序
—Qeyser17 小时前
UNI-APP弹窗
微信小程序·uniapp
Burt17 小时前
【unibest】可以去掉hbx模版了,base模板一统天下
前端·微信小程序·uni-app
总裁余(余登武)19 小时前
微信小程序——第三章开发框架
微信小程序·小程序·notepad++
Q_19284999061 天前
基于Spring Boot微信小程序电影管理系统
spring boot·后端·微信小程序
cxr8281 天前
基于微信小程序的面部动作检测
微信小程序·小程序
W.Y.B.G1 天前
微信小程序滑动解锁、滑动验证
安全·微信小程序