当前位置:   article > 正文

微信小程序获取手机号_getphonenumber获取到code之后怎么获取手机号

getphonenumber获取到code之后怎么获取手机号

微信小程序获取手机号

流程

小程序端获取到code码之后发送请求到后端并携带code码,使用auth.getAccessToken发起GET请求获取到ACCESS_TOKEN,继续使用phonenumber.getPhoneNumber获取到用户手机号。

小程序端获取code码

获取手机号

wxml添加按钮

<button open-type="getPhoneNumber" bindgetphonenumber="getPhoneNumber">获取手机号</button>
  • 1

js添加函数

Page({

getPhoneNumber (e) {

wx.request({
          url: 'url',
          method:'POST',
          data:{
              code:e.detail.code,
          },
          success(res){
            console.log(res);
          }
      })
}

})
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17

后台获取到code进行处理

函数解释:

file_get_contents:发起请求来处理

json_decode:json格式转换为数组

stream_context_create:改变发送请求的方式为post

json_encode:数组转换为json格式

以上为在本例起到的作用

public function login(Request $request){
    $APPID = env('APPID');
    $APPSECRET = env('APPSECRET');
    $ACCESS_TOKEN = json_decode(file_get_contents("https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=$APPID&secret=$APPSECRET"),true)['access_token'];
    $url = "https://api.weixin.qq.com/wxa/business/getuserphonenumber?access_token=$ACCESS_TOKEN";

    $content = stream_context_create(['http'=>['method' => 'POST' , 'header' => 'Content-type: application/json','content'=>json_encode(['code' => $request->code])]]);

    $response = json_decode(file_get_contents($url , false , $content),true);
    return  $response['phone_info']['phoneNumber'];
}


  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/一键难忘520/article/detail/792047
推荐阅读
相关标签
  

闽ICP备14008679号