1. 程式人生 > >Laravel框架之微信授權獲取使用者資訊

Laravel框架之微信授權獲取使用者資訊

必要條件:

1)公眾號認證

2)有網頁授權獲取使用者基本資訊的許可權介面

注意:最近有朋友說:在公眾平臺申請的測試號,會出現無法取到使用者資訊。換到認證的公眾賬號就正常了!

填寫授權回撥頁面的域名

登入公眾平臺–>開發者中心–>介面許可權表

找到 網頁授權獲取使用者基本資訊 然後修改–>填寫你的域名.如下:

關於網頁授權的兩種scope的區別說明(官方)

1、以snsapi_base為scope發起的網頁授權,是用來獲取進入頁面的使用者的openid的,並且是靜默授權並自動跳轉到回撥頁的。使用者感知的就是直接進入了回撥頁(往往是業務頁面)

2、以snsapi_userinfo為scope發起的網頁授權,是用來獲取使用者的基本資訊的。但這種授權需要使用者手動同意,並且由於使用者同意過,所以無須關注,就可在授權後獲取該使用者的基本資訊。

3、使用者管理類介面中的“獲取使用者基本資訊介面”,是在使用者和公眾號產生訊息互動或關注後事件推送後,才能根據使用者OpenID來獲取使用者基本資訊。這個介面,包括其他微信介面,都是需要該使用者(即openid)關注了公眾號後,才能呼叫成功的。

因為scope有兩種模式:

scope為snsapi_base 那麼使用者必須是關注了公眾號才能取得資訊

先自己建立兩個檔案: index.php 和 getUserInfo.php

程式碼例項

index.php如下:

<?php
//備註:微信網頁授權 獲取使用者基本資訊
$appid='wx0ba7d9c44d0ebef0';
$redirect_uri = urlencode ( 'http://five.haoyunyun.cn/weixin/getuserinfo.php');
$url ="https://open.weixin.qq.com/connect/oauth2/authorize?appid=$appid&redirect_uri=$redirect_uri&response_type=code&scope=snsapi_base&state=1#wechat_redirect";
header("Location:".$url);

getUserInfo.php如下:

<?php
 
$appid = "wx0ba7d9c44d0ebef0";  
$secret = "7172e05d1a14b363e37c020b933c1c47";  
$code = $_GET["code"];
 
//第一步:取全域性access_token
$url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=$appid&secret=$secret";
$token = getJson($url);
 
//第二步:取得openid
$oauth2Url = "https://api.weixin.qq.com/sns/oauth2/access_token?appid=$appid&secret=$secret&code=$code&grant_type=authorization_code";
$oauth2 = getJson($oauth2Url);
  
//第三步:根據全域性access_token和openid查詢使用者資訊  
$access_token = $token["access_token"];  
$openid = $oauth2['openid'];  
$get_user_info_url = "https://api.weixin.qq.com/cgi-bin/user/info?access_token=$access_token&openid=$openid&lang=zh_CN";
$userinfo = getJson($get_user_info_url);
 
//列印使用者資訊
  print_r($userinfo);
 
function getJson($url){
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); 
    curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE); 
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    $output = curl_exec($ch);
    curl_close($ch);
    return json_decode($output, true);
}

scope為snsapi_userinfo 使用者不用關注公眾號,也能取到資訊,但是會有一個介面讓使用者去點選確認!相當於一個登入授權吧!

程式碼例項

index.php如下:

<?php
//備註:微信網頁授權 獲取使用者基本資訊
$appid='wx0ba7d9c44d0ebef0';
$redirect_uri = urlencode ( 'http://five.haoyunyun.cn/weixin1/getuserinfo.php');
$url ="https://open.weixin.qq.com/connect/oauth2/authorize?appid=$appid&redirect_uri=$redirect_uri&response_type=code&scope=snsapi_userinfo&state=1#wechat_redirect";
header("Location:".$url);

getUserInfo.php如下:

<?php
 
$appid = "wx0ba7d9c44d0ebef0";  
$secret = "7172e05d1a14b363e37c020b933c1c47";  
$code = $_GET["code"];
 
//第一步:取得openid
$oauth2Url = "https://api.weixin.qq.com/sns/oauth2/access_token?appid=$appid&secret=$secret&code=$code&grant_type=authorization_code";
$oauth2 = getJson($oauth2Url);
  
//第二步:根據全域性access_token和openid查詢使用者資訊  
$access_token = $oauth2["access_token"];  
$openid = $oauth2['openid'];  
$get_user_info_url = "https://api.weixin.qq.com/cgi-bin/user/info?access_token=$access_token&openid=$openid&lang=zh_CN";
$userinfo = getJson($get_user_info_url);
 
//列印使用者資訊
  print_r($userinfo);
 
function getJson($url){
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); 
    curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE); 
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    $output = curl_exec($ch);
    curl_close($ch);
    return json_decode($output, true);
}

測試步驟:

建立index.php和getUserInfo.php兩個檔案後

先測試:scope為snsapi_base

1)先關注公眾賬號

2)將網址: http://你的域名/index.php 生成一個二維碼!

3)用微信掃一掃

再測試:scope為snsapi_userinfo

1)替換程式碼

2)取消關注當前公眾號.

3)然後用微信掃一掃,剛剛你生成的二維碼.

最後結束…