您的位置:首页 > 财经 > 金融 > 怎么做网页个人简介_站长之家seo概况查询_事件营销的概念_官网关键词优化价格

怎么做网页个人简介_站长之家seo概况查询_事件营销的概念_官网关键词优化价格

2025/1/9 10:45:59 来源:https://blog.csdn.net/liuxi_happy/article/details/144905940  浏览:    关键词:怎么做网页个人简介_站长之家seo概况查询_事件营销的概念_官网关键词优化价格
怎么做网页个人简介_站长之家seo概况查询_事件营销的概念_官网关键词优化价格

微信小程序获取用户手机号有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: '', //你的小程序的APPIDsecret: '', //你的小程序秘钥secret,  js_code: code, //uni.login 登录成功后的codegrant_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);},})
}

官网文件获取路径

WXBizDataCrypt.js 文件
这个链接里面有解密包或者直接用我下面的代码var crypto = require('crypto')function WXBizDataCrypt(appId, sessionKey) {this.appId = appIdthis.sessionKey = sessionKey
}WXBizDataCrypt.prototype.decryptData = function (encryptedData, iv) {// base64 decodevar 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

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com