欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

微信小程序用户授权获取手机号(getPhoneNumber)

程序员文章站 2022-07-07 12:17:56
前言小程序有一个获取用户很便捷的api,就是通过getphonenumber获取用户的已经绑定微信的手机号码。有一点要大家注意,现在微信和注重用户体验,有些方法都是需要用户主动去触发才能调用的,比如g...

前言

小程序有一个获取用户很便捷的api,就是通过getphonenumber获取用户的已经绑定微信的手机号码。有一点要大家注意,现在微信和注重用户体验,有些方法都是需要用户主动去触发才能调用的,比如getphonenumber。

实现思路:

1、通过wx.login获取code,从而获取到用户的openid和sessionkey

2、通过getphonenumber获取encrypteddata,iv

3、通过参数【encrypteddata】 、【iv】 、【sessionkey】  请求后台解密获取用户手机号

直接上干货:

1、用户点击获取用户手机号码按钮

<button class='pop_btn' plain="true"

open-type='getphonenumber' bindgetphonenumber="getphonenumber">获取用户手机号</button>

2、弹出授权图片:

微信小程序用户授权获取手机号(getPhoneNumber)

3、通过解密获取手机号码

微信小程序用户授权获取手机号(getPhoneNumber)

直接上代码:

wxlogin: function() { //获取用户的openid和sessionkey
  var that = this;
  wx.login({
    //获取code 使用wx.login得到的登陆凭证,用于换取openid
    success: (res) = >{
      wx.request({
        method: "get",
        url: 'https://xxxwx/wxlogin.do',
        data: {
          code: res.code,
          appid: "appidsbcx",
          appkey: "appkeysbcx"

        },
        header: {
          'content-type': 'application/json' // 默认值
        },
        success: (res) = >{
          console.log(res);
          that.setdata({
            sessionkey: res.data.session_key

          });
        }
      });
    }
  });
}

getphonenumber: function(e) { //点击获取手机号码按钮
  var that = this;
  wx.checksession({
    success: function() {
      console.log(e.detail.errmsg)
      console.log(e.detail.iv)
      console.log(e.detail.encrypteddata)
      var ency = e.detail.encrypteddata;
      var iv = e.detail.iv;
      var sessionk = that.data.sessionkey;
      if (e.detail.errmsg == 'getphonenumber:fail user deny') {
        that.setdata({
          modalstatus: true
        });

      } else { //同意授权
        wx.request({
          method: "get",
url: 'https://xxx/wx/deciphering.do',
          data: {
            encrypdata: ency,
            ivdata: iv,
            sessionkey: sessionk
          },
          header: {
            'content-type': 'application/json' // 默认值
          },
          success: (res) = >{
            console.log("解密成功~~~~~~~将解密的号码保存到本地~~~~~~~~");
            console.log(res);
            var phone = res.data.phonenumber;
            console.log(phone);
          },
          fail: function(res) {
            console.log("解密失败~~~~~~~~~~~~~");
            console.log(res);
          }
        });
      }

    },

    fail: function() {
      console.log("session_key 已经失效,需要重新执行登录流程");
      that.wxlogin(); //重新登录
    }
  });
}

后台代码:

/**
* 解密并且获取用户手机号码
* @param encrypdata
* @param ivdata
* @param sessionkey
* @param request
* @return
* @throws exception 
*/
@requestmapping(value = "deciphering", method = requestmethod.get)
public @responsebody string deciphering(string encrypdata, 
string ivdata, string sessionkey,
httpservletrequest request) {

    byte[] encrypdata = base64.decode(encrypdata); 
    byte[] ivdata = base64.decode(ivdata); 
    byte[] sessionkey = base64.decode(sessionkey); 
    string str="";
try {
str = decrypt(sessionkey,ivdata,encrypdata);
} catch (exception e) {
// todo auto-generated catch block
e.printstacktrace();
}
    system.out.println(str); 
    return str;

}
public static string decrypt(byte[] key, byte[] iv, byte[] encdata) throws exception { 
    algorithmparameterspec ivspec = new ivparameterspec(iv); 
    cipher cipher = cipher.getinstance("aes/cbc/pkcs5padding"); 
    secretkeyspec keyspec = new secretkeyspec(key, "aes"); 
    cipher.init(cipher.decrypt_mode, keyspec, ivspec); 
    //解析解密后的字符串 
    return new string(cipher.dofinal(encdata),"utf-8"); 
  }

总结

到此这篇关于微信小程序用户授权获取手机号的文章就介绍到这了,更多相关小程序授权获取手机号内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!