国内の QQ ユーザーの人気により、大手 Web サイトは QQ ログイン ポートの提供に全力を尽くしています。参考までに php バージョンを見てみましょう。
-
- /**
- * QQ インターネット認証
- * @author dyllen
- *
- */
- class Oauth
- {
- //認可コードURLを取得
- const PC_CODE_URL = 'https://graph.qq.com/oauth2.0/authorize';
-
- / /アクセストークンのURLを取得
- const PC_ACCESS_TOKEN_URL = 'https://graph.qq.com/oauth2.0/token';
-
- //ユーザーのオープンID URLを取得
- const OPEN_ID_URL = 'https://graph.qq.com /oauth2.0/me';
-
- //ユーザー認証後のコールバックアドレス
- public $redirectUri = null;
-
- // アプリID
- public $appid = null;
-
- //アプリキー
- public $appKey = null ;
-
- //認可リスト
- //複数のカンマ区切りの文字列
- public $scope = null;
-
- //認可コード
- public $code = null;
-
- //アクセストークン更新用の証明書
- public $refreshToken = null ;
-
- //アクセス トークン
- public $accessToken = null;
-
- //アクセス トークンの有効期間、秒単位
- public $expiresIn = null;
-
- //state
- public $state = null;
-
- public $openid = null;
-
- //construct
- public function __construct($config=[])
- {
- foreach($config as $key => $value) {
- $this->$key = $value ;
- }
- }
-
- /**
- * コードを取得するための URL を取得します
- * @throws InvalidArgumentException
- * @return string
- */
- public function codeUrl()
- {
- if (!$this->redirectUri) {
- throw new Exception('パラメータ $redirectUri を設定する必要があります。') ;
- }
- $query = [
- 'response_type' => 'code',
- 'client_id' => $this->appid,
- 'redirect_uri' => $this->getState(),
- 'scope' => $this->scope,
- ];
-
- return self::PC_CODE_URL . http_build_query($query);
- /* *
- * アクセストークンの取得
- * @throws Exception
- * @return boolean
- */
- public function getAccessToken()
- {
- $params = [
- 'grant_type' => 'authorization_code',
- 'client_id' => $this->appid,
- ' client_secret' => ; $this->appKey,
- 'code' => $this->code,
- 'redirect_uri' => $this->redirectUri,
- $url = self:PC_ACCESS_TOKEN_URL ' ?' . http_build_query($params);
- $content = $this->getUrl($url);
- parse_str($content, $res);
- if ( !isset($res['access_token' ]) ) {
- $this->thrwoError($content);
- }
-
- $this->accessToken = $res['access_token'];
- $this->expiresIn = $res['expires_in'] ;
- $this ->refreshToken = $res['refresh_token'];
-
- return true;
- }
-
- /**
- * 刷新アクセストークン
- * @throws Exception
- * @return boolean
- */
- public function freshToken()
- {
- $params = [
- 'grant_type ' => 'refresh_token',
- 'client_id' => $this->appid,
- 'client_secret' => $this->refreshToken,
- ];
-
- $url = self::PC_ACCESS_TOKEN_URL . '?' http_build_query($params);
- $content = $this->getUrl($url);
- if ( !isset( $res['access_token']) ) {
- $this->thrwoError($content);
- }
-
- $this->accessToken = $res['access_token'];
- $this-> ;expiresIn = $ res['expires_in'];
- $this->refreshToken = $res['refresh_token'];
-
- return true;
- }
-
- /**
- * ユーザーオープンIDを取得します
- * @return string
- */
- public function getOpenid()
- {
- $ params = [
- 'access_token' => $this->accessToken,
- ];
- $url = self::OPEN_ID_URL . http_build_query($params);
- ;openid = $ this->parseOpenid( $this->getUrl($url) );
-
- return $this->openid;
- }
-
- /**
- * URLコンテンツを取得するgetメソッド
- * @param string $url
- * @returnmixed
- */
- public function getUrl($ url)
- {
- $ch =curl_init();
- curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
- curl_setopt($ch, CURLOPT_URL, $url);
- $response =curl_exec($ch );
- curl_close($ch);
-
- return $response;
- }
-
- /**
- * URLコンテンツを取得するPostメソッド
- * @param string $url
- * @param array $keysArr
- * @paramnumber $flag
- * @returnmixed
- */
- public function postUrl($url, $keysArr, $flag = 0)
- {
- $ch =curl_init();
- if(! $flag)curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
- curl_setopt($ch、CURLOPT_RETURNTRANSFER、TRUE);
- curl_setopt($ch、CURLOPT_POST、TRUE);
- curl_setopt($ch、CURLOPT_POSTFIELDS、$keysArr);
- curl_setopt($ch、CURLOPT_URL、$url);
- $ret =curl_exec($ch);
-
- curl_close($ch);
- return $ret;
- }
-
-
- /**
- * 状態を取得します
- * @return string
- */
- protected function getState()
- {
- $this->state = md5(uniqid(rand(), true));
- //state が存在します領域
- //自己定義
- //。。。。。。。。
-
- return $this->state;
- }
-
- /**
- * 状態を確認します
- * @return boolean
- */
- 保護関数 verifyState()
- {
- //。。。。。。。
- }
-
- /**
- * 例外をスローします
- * @param string $error
- * @throws 例外
- */
- 保護関数 thrwoError($error)
- {
- $subError = substr($error, strpos($error, "{"));
- $subError = strstr($subError, "}", true) 。 "}";
- $error = json_decode($subError, true);
-
- throw new Exception($error['error_description'], (int)$error['error']);
- }
-
- /**
- * openid インターフェースの戻りデータから openid を解析します
- * @param string $str
- * @return string
- */
- 保護された関数 parseOpenid($str)
- {
- $subStr = substr($str, strpos($str, "{"));
- $subStr = strstr($subStr, "}", true) 。 "}";
- $strArr = json_decode($subStr, true);
- if(!isset($strArr['openid'])) {
- $this->thrwoError($str);
- }
-
- return $ strArr['openid'];
- }
- }
-
复制代码
以上の記載は本書のすべての内容であり、皆様に喜んでいただけることを願っております。
互联、PHP |