溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

PHP怎么配合微信小程序?qū)崿F(xiàn)獲取手機(jī)號(hào)碼

發(fā)布時(shí)間:2022-08-26 10:33:51 來(lái)源:億速云 閱讀:259 作者:iii 欄目:開(kāi)發(fā)技術(shù)

這篇文章主要講解了“PHP怎么配合微信小程序?qū)崿F(xiàn)獲取手機(jī)號(hào)碼”,文中的講解內(nèi)容簡(jiǎn)單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來(lái)研究和學(xué)習(xí)“PHP怎么配合微信小程序?qū)崿F(xiàn)獲取手機(jī)號(hào)碼”吧!

PHP怎么配合微信小程序?qū)崿F(xiàn)獲取手機(jī)號(hào)碼

當(dāng)前通過(guò)獲取session_key與encryptedData與iv進(jìn)行解密獲取手機(jī)號(hào)的方法已經(jīng)不行了,只能通過(guò)點(diǎn)擊按鈕來(lái)實(shí)現(xiàn)獲取微信用戶的手機(jī)號(hào)

1:需要將 button 組件 open-type 的值設(shè)置為 getPhoneNumber,當(dāng)用戶點(diǎn)擊并同意之后,可以通過(guò) bindgetphonenumber 事件回調(diào)獲取到動(dòng)態(tài)令牌code,然后把code傳到開(kāi)發(fā)者后臺(tái),并在開(kāi)發(fā)者后臺(tái)調(diào)用微信后臺(tái)提供的 phonenumber.getPhoneNumber 接口,消費(fèi)code來(lái)?yè)Q取用戶手機(jī)號(hào)。每個(gè)code有效期為5分鐘,且只能消費(fèi)一次。

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

代碼如下:

wxss代碼:

 <button type="primary"  bindgetphonenumber="onGetPhoneNumber" open-type="getPhoneNumber">獲取</button>

js代碼:

onGetPhoneNumber (e){
    if(e.detail.code==null||e.detail.code==""){
      wx.showToast({
        title: '請(qǐng)?jiān)试S獲取您的手機(jī)號(hào)',

        '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】根據(jù)傳過(guò)來(lái)的動(dòng)態(tài)令牌code去獲取手機(jī)號(hào)

/**
 * @param Request $request
 * 獲取手機(jī)號(hào)碼
 */
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, '獲取手機(jī)號(hào)碼成功',['phone'=>$phoneNumber]);
    }else{
        
        self::returnMsg(Error::FAILED, '獲取手機(jī)號(hào)碼失敗',['']);
    }
    
}

附帶函數(shù):

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;
}

可能出現(xiàn)的錯(cuò)誤:errcode“:47001

問(wèn)題所在:

PHP怎么配合微信小程序?qū)崿F(xiàn)獲取手機(jī)號(hào)碼

這里肯定是忘記用json_encode

除了這個(gè)問(wèn)題,某些大聰明娃喜歡把

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

這里的access_token變成data里邊的參數(shù),這時(shí)候就出現(xiàn)了access_token過(guò)期的問(wèn)題。

一切問(wèn)題來(lái)源于沒(méi)有好好看官方文檔

因?yàn)槟闳绻麑ccess_token當(dāng)做參數(shù),接口就變成了用兩次access_token,第一次木有問(wèn)題,第二次就只能跟你說(shuō)拜拜了(access_token過(guò)期或無(wú)效)。

感謝各位的閱讀,以上就是“PHP怎么配合微信小程序?qū)崿F(xiàn)獲取手機(jī)號(hào)碼”的內(nèi)容了,經(jīng)過(guò)本文的學(xué)習(xí)后,相信大家對(duì)PHP怎么配合微信小程序?qū)崿F(xiàn)獲取手機(jī)號(hào)碼這一問(wèn)題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI