当前位置:   article > 正文

微信小程序中针对微信基础库新旧不同版本获取用户手机号的方法_调试基础库 版本会影响获取用户

调试基础库 版本会影响获取用户

1.下面是微信官方关于获取手机号的文档链接

获取手机号 | 微信开放文档微信开发者平台文档https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/getPhoneNumber.html

2.微信基础库版本2.21.2以上时,即新版本库无需提前调用wx.login();旧版本必须先调用wx.login();

我的业务场景是为了微信授权一键登录,我这里做个新旧版本的兼容处理。

3.官方的代码示例,不能直接 CV 使用,下面粘上我个人亲测可用的示例代码

3.1先来一个触发按钮

<button type="primary" open-type="getPhoneNumber" @getphonenumber="getPhoneNumber">获取手机号码</button>

3.2如果微信基础库版本是旧版本( 2.21.2 以下)时,需要先调用wx.login()获取session_key 参数,之后调用getPhoneNumber 函数,此函数直接返回加密字符串,需要页面解密即可得到用户手机号。

此处附上解密工具js文件

WXBizDataCrypt.js文件内容如下:

  1. var crypto = require('crypto')
  2. function WXBizDataCrypt(appId, sessionKey) {
  3. this.appId = appId
  4. this.sessionKey = sessionKey
  5. }
  6. WXBizDataCrypt.prototype.decryptData = function (encryptedData, iv) {
  7. // base64 decode
  8. var sessionKey = new Buffer(this.sessionKey, 'base64')
  9. encryptedData = new Buffer(encryptedData, 'base64')
  10. iv = new Buffer(iv, 'base64')
  11. try {
  12. // 解密
  13. var decipher = crypto.createDecipheriv('aes-128-cbc', sessionKey, iv)
  14. // 设置自动 padding 为 true,删除填充补位
  15. decipher.setAutoPadding(true)
  16. var decoded = decipher.update(encryptedData, 'binary', 'utf8')
  17. decoded += decipher.final('utf8')
  18. decoded = JSON.parse(decoded)
  19. } catch (err) {
  20. throw new Error('Illegal Buffer')
  21. }
  22. if (decoded.watermark.appid !== this.appId) {
  23. throw new Error('Illegal Buffer')
  24. }
  25. return decoded
  26. }
  27. module.exports = WXBizDataCrypt

使用页面需要引入一下,路劲写成自己的,我的是放到根目录下的common文件夹下:

import WXBizDataCrypt from "@/common/WXBizDataCrypt.js";

3.3按钮绑定的函数 getPhoneNumber

  1. //微信的login方法
  2. wxAuthLogin(){
  3. wx.login({
  4. success:(res) => {
  5. if (res.code) {
  6. //发起网络请求
  7. //此处请求自己的后台服务,并将输入参数 res.code 传给后台以获取输出参数wxopenid和session_key的值
  8. } else {
  9. console.log("微信登录失败:"+res.errMsg);
  10. }
  11. },
  12. fail(res){
  13. console.log(res.errMsg);
  14. }
  15. });
  16. },
  17. //获取手机号
  18. getPhoneNumber (e) {
  19. if(e.detail.errMsg == 'getPhoneNumber:fail user deny'){//拒绝获取手机号
  20. console.log("授权失败,用户已拒绝!");
  21. //拒绝后可以根据自己的实际场景添加业务逻辑
  22. }else{//同意获取手机号
  23. //此处Common.isExist 是我自定义的判断是否为空的函数,您可以修改为自己的判断非空的方法
  24. if(Common.isExist(e.detail.code)){//如果存在code值,则当前环境为新版本
  25. //此处根据入参 e.detail.code 请求后台接口,即可得到用户的手机号
  26. }else{//微信基础库版本为旧版本
  27. //解密方法,第一个参数为小程序的appid,第二个为调用wx.login()并请求后台之后返回的session_key
  28. var pc = new WXBizDataCrypt("wx69e6361f588acbe5", this.sessionKey);
  29. var data = pc.decryptData(e.detail.encryptedData , e.detail.iv);
  30. console.log("解密后的手机号:"+data.purePhoneNumber);
  31. }
  32. }
  33. }

4.平台差异说明,真机预览如下,会提示你的小程序名称申请,微信开发者工具中预览效果有所不一样,只要能调用成功即可。

 5.后台服务接口

5.1 wx.login()请求的后台接口,代码示例如下,此处传入前端wx.login()获取到的code

  1. private static final String appid = "wx****************";
  2. private static final String secret = "7b****************e98bb6";
  3. public static ReturnData getOpenIdAndSessionKey(String code) {
  4. if(StringUtil.isEmpty(code)){
  5. return new ReturnData(ReturnCode.FAIL.getCode(), "微信小程序获取openid失败,参数code为空!");
  6. }
  7. String url = "https://api.weixin.qq.com/sns/jscode2session?appid="+appid+"&secret="+secret+"&grant_type=authorization_code";
  8. url += "&js_code="+code;
  9. try {
  10. CloseableHttpResponse response = HttpClients.createDefault().execute(new HttpGet(url));
  11. String ret = EntityUtils.toString(response.getEntity());
  12. JSONObject jsonObject = JSON.parseObject(ret);
  13. if(StringUtil.isNotEmpty(jsonObject.getString("openid"))){
  14. return new ReturnData(ReturnCode.SUCCESS.getCode(), ret, ReturnCode.SUCCESS.getMessage());
  15. }
  16. if("0".equals(jsonObject.getString("errcode"))){
  17. return new ReturnData(ReturnCode.SUCCESS.getCode(), ret, ReturnCode.SUCCESS.getMessage());
  18. }
  19. logger.error("微信小程序获取openid错误:{}", jsonObject.getString("errmsg"));
  20. return new ReturnData(ReturnCode.FAIL.getCode(), "微信小程序获取openid错误");
  21. } catch (ClientProtocolException e) {
  22. logger.error("微信小程序获取openid异常,ClientProtocolException:{}", e);
  23. return new ReturnData(ReturnCode.FAIL.getCode(), "微信小程序获取openid异常:ClientProtocolException");
  24. } catch(IOException e){
  25. logger.error("微信小程序获取openid异常,IOException:{}", e);
  26. return new ReturnData(ReturnCode.FAIL.getCode(), "微信小程序获取openid异常:IOException");
  27. } catch(Exception e){
  28. logger.error("微信小程序获取openid异常,Exception:{}", e);
  29. return new ReturnData(ReturnCode.FAIL.getCode(), "微信小程序获取openid异常:Exception");
  30. }
  31. }
  32. public static String getValueByKey(String ret,String key) {
  33. JSONObject jsonObject = JSON.parseObject(ret);
  34. return jsonObject.getString(key);
  35. }

5.2新版本获取手机号的后台接口代码示例:

  1. public static ReturnData getAccessToken() {
  2. String url = "https://api.weixin.qq.com/cgi-bin/token?appid="+appid+"&secret="+secret+"&grant_type=client_credential";
  3. try {
  4. CloseableHttpResponse response = HttpClients.createDefault().execute(new HttpGet(url));
  5. String ret = EntityUtils.toString(response.getEntity());
  6. JSONObject jsonObject = JSON.parseObject(ret);
  7. if(StringUtil.isNotEmpty(jsonObject.getString("access_token"))) {
  8. return new ReturnData(ReturnCode.SUCCESS.getCode(), jsonObject.getString("access_token"), ReturnCode.SUCCESS.getMessage());
  9. }
  10. if("0".equals(jsonObject.getString("errcode"))){
  11. return new ReturnData(ReturnCode.SUCCESS.getCode(), jsonObject.getString("access_token"), ReturnCode.SUCCESS.getMessage());
  12. }
  13. logger.error("微信小程序获取access_token错误:{}", jsonObject.getString("errmsg"));
  14. return new ReturnData(ReturnCode.FAIL.getCode(), "微信小程序获取access_token错误");
  15. } catch (ClientProtocolException e) {
  16. logger.error("微信小程序获取access_token异常,ClientProtocolException:{}", e);
  17. return new ReturnData(ReturnCode.FAIL.getCode(), "微信小程序获取access_token异常:ClientProtocolException");
  18. } catch(IOException e){
  19. logger.error("微信小程序获取access_token异常,IOException:{}", e);
  20. return new ReturnData(ReturnCode.FAIL.getCode(), "微信小程序获取access_token异常:IOException");
  21. } catch(Exception e){
  22. logger.error("微信小程序获取access_token异常,Exception:{}", e);
  23. return new ReturnData(ReturnCode.FAIL.getCode(), "微信小程序获取access_token异常:Exception");
  24. }
  25. }
  26. public static ReturnData getPhone(String code) {
  27. if(StringUtil.isEmpty(code)){
  28. return new ReturnData(ReturnCode.FAIL.getCode(), "微信小程序获取手机号失败,参数code为空!");
  29. }
  30. ReturnData returnData = getAccessToken();
  31. if(!ReturnCode.SUCCESS.getCode().equals(returnData.getCode())){
  32. return returnData;
  33. }
  34. String access_token = returnData.getResult();
  35. String url = "https://api.weixin.qq.com/wxa/business/getuserphonenumber?access_token="+access_token;
  36. try {
  37. JSONObject param=new JSONObject();
  38. param.put("code", code);
  39. String ret = HttpClientUtil.sendHttpPost2(url, param.toJSONString());
  40. JSONObject jsonObject = JSON.parseObject(ret);
  41. if("0".equals(jsonObject.getString("errcode"))){
  42. jsonObject = jsonObject.getJSONObject("phone_info");
  43. return new ReturnData(ReturnCode.SUCCESS.getCode(), jsonObject.getString("purePhoneNumber"), ReturnCode.SUCCESS.getMessage());
  44. }
  45. logger.error("微信小程序获取手机号错误:{}", jsonObject.getString("errmsg"));
  46. return new ReturnData(ReturnCode.FAIL.getCode(), "微信小程序获取手机号错误");
  47. } catch (ClientProtocolException e) {
  48. logger.error("微信小程序获取手机号异常,ClientProtocolException:{}", e);
  49. return new ReturnData(ReturnCode.FAIL.getCode(), "微信小程序获取手机号异常:ClientProtocolException");
  50. } catch(IOException e){
  51. logger.error("微信小程序获取手机号异常,IOException:{}", e);
  52. return new ReturnData(ReturnCode.FAIL.getCode(), "微信小程序获取手机号异常:IOException");
  53. } catch(Exception e){
  54. logger.error("微信小程序获取手机号异常,Exception:{}", e);
  55. return new ReturnData(ReturnCode.FAIL.getCode(), "微信小程序获取手机号异常:Exception");
  56. }
  57. }

上面获取手机号的方法内用到一个HttpClientUtil.sendHttpPost2 方法的代码如下:

  1. /**
  2. * 向指定 URL 发送POST方法的请求(参数不带名称)
  3. */
  4. public static String sendHttpPost2(String url, String param) throws IOException {
  5. PrintWriter out = null;
  6. BufferedReader in = null;
  7. String result = "";
  8. try {
  9. URL realUrl = new URL(url);
  10. // 打开和URL之间的连接
  11. URLConnection conn = realUrl.openConnection();
  12. conn.setConnectTimeout(10000);
  13. conn.setReadTimeout(300000);
  14. // 设置通用的请求属性
  15. conn.setRequestProperty("accept", "*/*");
  16. conn.setRequestProperty("connection", "Keep-Alive");
  17. conn.setRequestProperty("user-agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;SV1)");
  18. conn.setRequestProperty("Content-Type", "application/json; charset=utf-8");
  19. // 发送POST请求必须设置如下两行
  20. conn.setDoOutput(true);
  21. conn.setDoInput(true);
  22. // 获取URLConnection对象对应的输出流
  23. out = new PrintWriter(new OutputStreamWriter(conn.getOutputStream(), "utf-8"));
  24. // out = new PrintWriter(conn.getOutputStream());
  25. // 发送请求参数
  26. out.print(param);
  27. // flush输出流的缓冲
  28. out.flush();
  29. // 定义BufferedReader输入流来读取URL的响应
  30. in = new BufferedReader(new InputStreamReader(conn.getInputStream(), "utf-8"));
  31. String line;
  32. while ((line = in.readLine()) != null) {
  33. result += line;
  34. }
  35. }
  36. // 使用finally块来关闭输出流、输入流
  37. finally {
  38. try {
  39. if (out != null) {
  40. out.close();
  41. }
  42. if (in != null) {
  43. in.close();
  44. }
  45. } catch (IOException ex) {
  46. ex.printStackTrace();
  47. }
  48. }
  49. return result;
  50. }

6.到此一个完整的微信小程序获取用户手机号的完整实战案例就结束了,如有错误还请各位大佬能指正。欢迎评论区留言咨询或者讨论。

题外话:欢迎大家微信搜索#民谣嗑学家 ,关注我的个人公众号,我是一名爱代码,爱民谣,爱生活的业余吉他爱好者的Java 程序员,致力于向全栈发展的全能程序员。有想跟作者交朋友的可以关注我公众号,获取我的联系方式,我们可以一起学习,一起进步,业余时间可以一起娱乐娱乐,哈哈^_^。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/284630
推荐阅读
相关标签
  

闽ICP备14008679号