您好,登錄后才能下訂單哦!
本篇內(nèi)容主要講解“微信小程序怎么實現(xiàn)獲取用戶手機號碼功能”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學(xué)習(xí)“微信小程序怎么實現(xiàn)獲取用戶手機號碼功能”吧!
獲取用戶手機號碼 分為以下幾步:
第一點擊頁面獲取授權(quán)按鈕
第二獲取用戶授權(quán)參數(shù)
第三根據(jù)加解密算法解密手機號碼
接下來我們來實現(xiàn)以上三步
先看前端頁面
<!--index.wxml--> <view class="container"> <view > <button class="authbtn" type="primary" open-type="getUserInfo" lang="zh_CN" bindgetuserinfo="getUserProfile" bindtap="getUserProfile">獲取用戶信息</button> <button class="authbtn" open-type="getPhoneNumber" type="primary" bindgetphonenumber="onGetPhoneNumber">獲取手機號碼</button> <view class="userinfo"> <block> <view class="userinfo-avatar" bindtap="bindViewTap"> <image class="userinfo-avatar" type="userAvatarUrl" src="{{userInfo.avatarUrl}}" mode="cover" ></image> </view> <Text class="userinfo-nickname" >{{userInfo.nickName}}</Text> <text class="userinfo-phone" >{{userInfo.phone}}</text> <text class="userinfo-phone" wx:if="{{userInfo.gender==0}}">男</text> <text class="userinfo-phone" wx:if="{{userInfo.gender==1}}">女</text> <picker bindchange="bindPickerLingyuChange" value="{{index}}" range="{{array}}"> <view wx:if="{{showLingyu==true}}" class="tips">選擇職業(yè) </view> <text class="tips"> {{array[index]}}</text> </picker> <picker bindchange="bindPickerAearaChange" value="{{i}}" range="{{items}}" range-key="name"> <view wx:if="{{showAeara==true}}"class="tips">選擇地區(qū) </view> <text class="tips">{{items[i].name}}</text> </picker> <button class="authbtn" type="primary" bindtap="bindViewTap">注冊</button> </block> </view> </view> </view>
獲取用戶頭像的我就直接略過了,網(wǎng)上資料也比較多
接下來我們看關(guān)鍵代碼
此處定義
getPhoneNumber是微信官方要求,獲取用戶手機號碼授權(quán)
onGetPhoneNumber是回調(diào)函數(shù),獲取授權(quán)后會回調(diào)到該方法,也就是獲取的電話號碼就在這個函數(shù)的返回值里面。當然這個函數(shù)是自定義的,名字大家可以隨便起,上面的getPhoneNumber可不能隨便修改。
上代碼:這里是js調(diào)用我們自己的后臺,我們的后臺再調(diào)用微信服務(wù)端
onGetPhoneNumber(e) { var that = this; wx.login({ success (res) { if (res.code) { console.log('步驟2獲檢查用戶登錄狀態(tài),獲取用戶電話號碼!', res) wx.request({ url: '這里寫自己的獲取授權(quán)的服務(wù)器地址', data: {code: res.code}, header: {'content-type': 'application/json'}, success: function(res) { console.log("步驟三獲取授權(quán)碼,獲取授權(quán)openid,session_key",res); var userphone=res.data.data; wx.setStorageSync('userphoneKey',userphone); //解密手機號 var msg = e.detail.errMsg; var sessionID=wx.getStorageSync("userphoneKey").session_key; var encryptedData=e.detail.encryptedData; var iv=e.detail.iv; if (msg == 'getPhoneNumber:ok') {//這里表示獲取授權(quán)成功 wx.checkSession({ success:function(){ //這里進行請求服務(wù)端解密手機號 that.deciyption(sessionID,encryptedData,iv); }, fail:function(){ // that.userlogin() } }) } },fail:function(res){ console.log("fail",res); } }) } else { console.log('登錄失??!' + res.errMsg) } } })
后臺調(diào)用微信獲取授權(quán)碼
下面是我通過自己寫的框架調(diào)用的,不用關(guān)心注解內(nèi)容,大家只關(guān)注自己的框架注解即可,不管是spring還是servlet只要請求能進到該方法即可,所以重點關(guān)注中間部分,把參數(shù)值傳正確即可
/** * 回調(diào)微信登錄信息 * @param request * @param response */ @MethodAnnotation(method="miniGetAuth",methoddes="小程序授權(quán)",methodWay="ALL") public void miniGetAuth(HttpServletRequest request, HttpServletResponse response) throws Exception{ String url="https://api.weixin.qq.com/sns/jscode2session?appid=APPID&secret=SECRET&js_code=JSCODE&grant_type=authorization_code"; String code= request.getParameter("code"); if(empty(code))return; url=url.replaceAll("APPID", PropertiesUtil.wx_appid) .replaceAll("SECRET", PropertiesUtil.wx_appsecret) .replaceAll("JSCODE", code); qury(request, response, WeixinUtil.doGetStr(url), false, 0); }
下面是工具類方法 WeixinUtil.doGetStr(url)
/** * get請求 * @param url * @return * @throws ParseException * @throws IOException */ public static JSONObject doGetStr(String url) throws ParseException, IOException{ DefaultHttpClient client = new DefaultHttpClient(); HttpGet httpGet = new HttpGet(url); JSONObject jsonObject = null; HttpResponse httpResponse = client.execute(httpGet); HttpEntity entity = httpResponse.getEntity(); if(entity != null){ String result = EntityUtils.toString(entity,"UTF-8"); jsonObject = JSONObject.fromObject(result); } return jsonObject; }
這個值可以返回給前端,前端可以收到如下參數(shù)
接著我們通過授權(quán)之后,獲取第三個參數(shù)iv,調(diào)用下面方法進行服務(wù)端解密
that.deciyption(sessionID,encryptedData,iv);
deciyption(sessionID,encryptedData,iv){ var that = this; console.log("步驟4根據(jù)秘鑰解密手機號碼sessionID:",sessionID); wx.request({ url: '解密地址', data: { sessionID: sessionID, encryptedData:encryptedData, iv: iv }, header: {'content-type': 'application/json'}, success: function(res) { console.log("79",(res.data.code==20001)); if(res.data.code==20001){//這里不用管,可以刪掉,我的框架里返回值20001是授權(quán)失敗,可按照自己邏輯處理 console.log("獲取失敗,重新獲取",res); that.setData({ showPhone:true, }) }else{ console.log("line 79", JSON.parse(res.data.data)); var json= JSON.parse(res.data.data); wx.setStorageSync('userphone', JSON.parse(res.data.data).phoneNumber); console.log("步驟5解密成功",res.data.data); that.setData({ showPhone:false, "userInfo.phone":wx.getStorageSync('userphone') }) } },fail:function(res){ console.log("fail",res); } }) }
服務(wù)端解密代碼
/** * * @param request * @param response * @throws Exception */ @MethodAnnotation(method="miniGetPhone",methoddes="小程序解密手機號",methodWay="ALL") public void miniGetPhone(HttpServletRequest request, HttpServletResponse response) throws Exception{ String encrypdata= request.getParameter("encryptedData"); String ivdata= request.getParameter("iv"); String sessionkey= request.getParameter("sessionID"); if(empty(encrypdata,ivdata,sessionkey))return; qury(request, response, deciphering(encrypdata, ivdata, sessionkey), false, 0); }
public static String deciphering(String encrypdata,String ivdata, String sessionkey) { 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(); } 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"); }
到此,相信大家對“微信小程序怎么實現(xiàn)獲取用戶手機號碼功能”有了更深的了解,不妨來實際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進入相關(guān)頻道進行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。