溫馨提示×

溫馨提示×

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

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

怎么在PHP中調(diào)用QQ互聯(lián)接口實現(xiàn)QQ登錄網(wǎng)站功能

發(fā)布時間:2021-05-27 16:48:15 來源:億速云 閱讀:194 作者:Leah 欄目:開發(fā)技術(shù)

這期內(nèi)容當中小編將會給大家?guī)碛嘘P(guān)怎么在PHP中調(diào)用QQ互聯(lián)接口實現(xiàn)QQ登錄網(wǎng)站功能,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

<?php
  header("Content-Type: text/html;charset=utf-8");
  //應(yīng)用APP ID
  $app_id = "101486017";
  //應(yīng)用APP Key
  $app_secret = "13a1811780f29d7a5b64e598c38a4494";
  //應(yīng)用填寫的網(wǎng)站回調(diào)域
  $my_url = "http://www.msllws.top/qqlogin";
  //Step1:獲取Authorization Code
  session_start();
  $code = $_REQUEST["code"];//存放Authorization Code
  if(empty($code)) {
    //state參數(shù)用于防止CSRF攻擊,成功授權(quán)后回調(diào)時原樣帶回
    $_SESSION['state'] = md5(uniqid(rand(), TRUE));
    //拼接URL
    $dialog_url = "https://graph.qq.com/oauth3.0/authorize?response_type=code&client_id=".$app_id."&redirect_uri=".urlencode($my_url)."&state=".$_SESSION['state'];
    echo("<script> top.location.href='".$dialog_url."'</script>");
  }
  //Step2:通過Authorization Code獲取Access Token
  if($_REQUEST['state'] == $_SESSION['state'] || 1) {
    //拼接URL
    $token_url = "https://graph.qq.com/oauth3.0/token?grant_type=authorization_code&"."client_id=".$app_id."&redirect_uri=".urlencode($my_url)."&client_secret=".$app_secret."&code=".$code;
    $response = file_get_contents($token_url);
    //如果用戶臨時改變主意取消登錄,返回true!==false,否則執(zhí)行step3 
    if (strpos($response, "callback") !== false) {
      $lpos = strpos($response, "(");
      $rpos = strrpos($response, ")");
      $response = substr($response, $lpos + 1, $rpos - $lpos -1);
      $msg = json_decode($response);
      if (isset($msg->error)) {
        echo "<h4>error:</h4>".$msg->error;
        echo "<h4>msg :</h4>".$msg->error_description;
        exit;
      }
    }
    //Step3:使用Access Token來獲取用戶的OpenID
    $params = array();
    parse_str($response, $params);//把傳回來的數(shù)據(jù)參數(shù)變量化
    $graph_url = "https://graph.qq.com/oauth3.0/me?access_token=".$params['access_token'];
    $str = file_get_contents($graph_url);
    if (strpos($str, "callback") !== false) {
      $lpos = strpos($str, "(");
      $rpos = strrpos($str, ")");
      $str = substr($str, $lpos + 1, $rpos - $lpos -1);
    }
    $user = json_decode($str);//存放返回的數(shù)據(jù) client_id ,openid
    if (isset($user->error)) {
      echo "<h4>error:</h4>".$user->error;
      echo "<h4>msg :</h4>".$user->error_description;
      exit;
    }
    //Step4:使用openid和access_token獲取用戶信息
    $user_data_url = "https://graph.qq.com/user/get_user_info?access_token={$params['access_token']}&oauth_consumer_key={$app_id}&openid={$user->openid}&format=json";
    $user_data = file_get_contents($user_data_url);//獲取到的用戶信息
    //以下為授權(quán)成功后的自定義操作
    if($user_data){
      // ......
      echo("<script> top.location.href='http://www.msllws.top'</script>");
    }else{
      echo '未知錯誤';
    }
  }else{
    echo("The state does not match. You may be a victim of CSRF.");
  }

上述就是小編為大家分享的怎么在PHP中調(diào)用QQ互聯(lián)接口實現(xiàn)QQ登錄網(wǎng)站功能了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細節(jié)

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

php
AI