中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

l利用PHP怎么對微信網頁進行授權

發布時間:2021-01-26 15:19:22 來源:億速云 閱讀:200 作者:Leah 欄目:開發技術

這期內容當中小編將會給大家帶來有關l利用PHP怎么對微信網頁進行授權,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

微信網頁授權是服務號才有的高級功能,開發者可以通過授權后獲取用戶的基本信息;在此之前,想要獲取消息信息只能在用戶和公眾號交互時根據openid獲取用戶信息;而微信網頁授權可在不需要消息交互,也不需要關注的情況下獲取用戶的基本信息。

l利用PHP怎么對微信網頁進行授權

微信網頁授權時通過OAuth3.0完成的,整個過程分為三步:

  • 用戶授權,獲取code;

  • 根據code獲取access_token【可通過refresh_token刷新獲取較長有效期】

  • 通過access_token和openid獲取用戶信息
     

對微信網頁授權過程做了簡單封裝:

 <?php
 
/**
 * 微信授權相關接口
 */
 
class Wechat {
  
  //高級功能-》開發者模式-》獲取
  private $app_id = 'xxx';
  private $app_secret = 'xxxxxxx';
 
 
  /**
   * 獲取微信授權鏈接
   * 
   * @param string $redirect_uri 跳轉地址
   * @param mixed $state 參數
   */
  public function get_authorize_url($redirect_uri = '', $state = '')
  {
    $redirect_uri = urlencode($redirect_uri);
    return "https://open.weixin.qq.com/connect/oauth3/authorize?appid={$this->app_id}&redirect_uri={$redirect_uri}&response_type=code&scope=snsapi_userinfo&state={$state}#wechat_redirect";
  }
  
  /**
   * 獲取授權token
   * 
   * @param string $code 通過get_authorize_url獲取到的code
   */
  public function get_access_token($app_id = '', $app_secret = '', $code = '')
  {
    $token_url = "https://api.weixin.qq.com/sns/oauth3/access_token?appid={$this->app_id}&secret={$this->app_secret}&code={$code}&grant_type=authorization_code";
    $token_data = $this->http($token_url);
    
    if($token_data[0] == 200)
    {
      return json_decode($token_data[1], TRUE);
    }
    
    return FALSE;
  }
  
  /**
   * 獲取授權后的微信用戶信息
   * 
   * @param string $access_token
   * @param string $open_id
   */
  public function get_user_info($access_token = '', $open_id = '')
  {
    if($access_token && $open_id)
    {
      $info_url = "https://api.weixin.qq.com/sns/userinfo?access_token={$access_token}&openid={$open_id}&lang=zh_CN";
      $info_data = $this->http($info_url);
      
      if($info_data[0] == 200)
      {
        return json_decode($info_data[1], TRUE);
      }
    }
    
    return FALSE;
  }
  
  public function http($url, $method, $postfields = null, $headers = array(), $debug = false)
  {
    $ci = curl_init();
    /* Curl settings */
    curl_setopt($ci, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1);
    curl_setopt($ci, CURLOPT_CONNECTTIMEOUT, 30);
    curl_setopt($ci, CURLOPT_TIMEOUT, 30);
    curl_setopt($ci, CURLOPT_RETURNTRANSFER, true);
 
    switch ($method) {
      case 'POST':
        curl_setopt($ci, CURLOPT_POST, true);
        if (!empty($postfields)) {
          curl_setopt($ci, CURLOPT_POSTFIELDS, $postfields);
          $this->postdata = $postfields;
        }
        break;
    }
    curl_setopt($ci, CURLOPT_URL, $url);
    curl_setopt($ci, CURLOPT_HTTPHEADER, $headers);
    curl_setopt($ci, CURLINFO_HEADER_OUT, true);
 
    $response = curl_exec($ci);
    $http_code = curl_getinfo($ci, CURLINFO_HTTP_CODE);
 
    if ($debug) {
      echo "=====post data======\r\n";
      var_dump($postfields);
 
      echo '=====info=====' . "\r\n";
      print_r(curl_getinfo($ci));
 
      echo '=====$response=====' . "\r\n";
      print_r($response);
    }
    curl_close($ci);
    return array($http_code, $response);
  }
 
}

上述就是小編為大家分享的l利用PHP怎么對微信網頁進行授權了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

php
AI

宁陕县| 邮箱| 武宣县| 崇阳县| 高青县| 宣武区| 鄂托克旗| 宿州市| 安图县| 夏津县| 铜鼓县| 芜湖县| 集贤县| 乌拉特中旗| 利辛县| 荆州市| 苏州市| 容城县| 乌拉特中旗| 武清区| 万载县| 喀喇| 长岛县| 乌拉特前旗| 祥云县| 河南省| 花莲县| 中山市| 涞源县| 成都市| 台山市| 浏阳市| 齐齐哈尔市| 兴化市| 久治县| 万安县| 乌拉特前旗| 内江市| 怀安县| 津市市| 永善县|