首頁 > 軟體

PHP配合微信小程式實現獲取手機號碼詳解

2022-08-19 14:00:03

今天剛好做專案的時候用到這塊功能,黃啊碼就直接上手了,奈何網上的教學各式各樣,就是沒有個直接可以抄的,啊碼最煩說話說一半,今天就直接弄個給大家抄的。

當前通過獲取session_key與encryptedData與iv進行解密獲取手機號的方法已經不行了,只能通過點選按鈕來實現獲取微信使用者的手機號

1:需要將 button 元件 open-type 的值設定為 getPhoneNumber,當用戶點選並同意之後,可以通過 bindgetphonenumber 事件回撥獲取到動態令牌code,然後把code傳到開發者後臺,並在開發者後臺呼叫微信後臺提供的 phonenumber.getPhoneNumber 介面,消費code來換取使用者手機號。每個code有效期為5分鐘,且只能消費一次。

注:getPhoneNumber 返回的 code 與 wx.login 返回的 code 作用是不一樣的,不能混用。

程式碼如下:

wxss程式碼:

 <button type="primary" style="width:100%" bindgetphonenumber="onGetPhoneNumber" open-type="getPhoneNumber">獲取</button>

js程式碼:

onGetPhoneNumber (e){
    if(e.detail.code==null||e.detail.code==""){
      wx.showToast({
        title: '請允許獲取您的手機號',

        'icon':'none',

      })

      return;

    }else{
      wx.request({
        data: {
          code: e.detail.code,

          time:config.dt,

          openid: storage.get('openid')

        },

        header: {'content-type': 'application/json'},

        url: config.api+'/getWxPhone', 

        success: function(res) {
          console.log(res.data.data.phone);

        }

      })

    }

          

  },

2:後端PHP程式碼【此處我用的是tp5】根據傳過來的動態令牌code去獲取手機號

/**
 * @param Request $request
 * 獲取手機號碼
 */
public function getWxPhone(Request $request){

    $params = $request::only(['code']);
    
    $url_get = 'https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid='.config("appid").'&secret='.config("appsecret");

    $tmptoken = json_decode(curlGet($url_get),true);

    $token = $tmptoken['access_token'];
    
    $url = "https://api.weixin.qq.com/wxa/business/getuserphonenumber?access_token=".$token;

    $data['code']=$params['code'];

    $info = Post(json_encode($data),$url);

    $tmpinfo = json_decode($info,true);
    
    $code = $tmpinfo['errcode'];
    
    $phoneNumber = ""; 
    $phoneNumber = $tmpinfo['phone_info']['phoneNumber'];
    
    if($code == '0'){
        
        self::returnMsg(Error::SUCCESS, '獲取手機號碼成功',['phone'=>$phoneNumber]);
    }else{
        
        self::returnMsg(Error::FAILED, '獲取手機號碼失敗',['']);
    }
    
}

附帶函數:

function Post($curlPost, $url, $ssl = false)
{
    $curl = curl_init();

    curl_setopt($curl, CURLOPT_URL, $url);
    curl_setopt($curl, CURLOPT_HEADER, false);
    curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($curl, CURLOPT_NOBODY, true);
    curl_setopt($curl, CURLOPT_POST, true);
    curl_setopt($curl, CURLOPT_POSTFIELDS, $curlPost);
    if (!$ssl) {
        curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
        curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
    }
    $return_str = curl_exec($curl);
    curl_close($curl);
    return $return_str;
}

可能出現的錯誤:errcode“:47001

問題所在:

這裡肯定是忘記用json_encode

除了這個問題,某些大聰明娃喜歡把

https://api.weixin.qq.com/wxa/business/getuserphonenumber?access_token=".$token 

這裡的access_token變成data裡邊的引數,這時候就出現了access_token過期的問題。

一切問題來源於沒有好好看官方檔案

因為你如果將access_token當做引數,介面就變成了用兩次access_token,第一次木有問題,第二次就只能跟你說拜拜了(access_token過期或無效)。

到此這篇關於PHP配合微信小程式實現獲取手機號碼詳解的文章就介紹到這了,更多相關PHP獲取手機號碼內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com