국내 QQ 사용자들의 인기로 인해 현재 주요 웹사이트에서는 QQ 로그인 포트를 제공하기 위해 최선을 다하고 있습니다. 참고로 PHP 버전을 살펴보겠습니다.
-
- /**
- * QQ 인터넷 oauth
- * @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' ;
-
- //사용자 Open 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
- 공개 함수 __construct($config=[])
- {
- foreach($config as $key => $value) {
- $this->$key = $value;
- }
- }
-
- /**
- * 코드를 얻기 위한 URL 가져오기
- * @throws InvalidArgumentException
- * @return string
- */
- 공개 함수 codeUrl()
- {
- if (!$this->redirectUri) {
- throw new Exception('매개변수 $redirectUri를 설정해야 합니다.');
- }
- $query = [
- 'response_type' => 'code',
- 'client_id' = > this->appid,
- 'redirect_uri' => $this->redirectUri,
- 'state' => $this->getState(),
- 'scope' = > this->scope,
- ];
-
- return self::PC_CODE_URL '?' .
- }
-
- /**
- * 取액세스 토큰
- * @throws 예외
- * @return 부울
- * /
- 공개 함수 getAccessToken()
- {
- $params = [
- 'grant_type' => 'authorization_code',
- 'client_id' => 🎜> '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'] ;
-
- true를 반환합니다.
- }
-
- /**
- * 刷새로운 액세스 토큰
- * @throws 예외
- * @return 부울
- */
- 공개 함수 RefreshToken()
- {
- $params = [
- 'grant_type' => 'refresh_token',
- 'client_id' => $this->appid,
- 'client_secret' => $this->appKey,
- 'refresh_token' => ->refreshToken,
- ];
-
- $url = self::PC_ACCESS_TOKEN_URL . http_build_query($params);
- $content = $this->getUrl( $url) ;
- pars_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;
- }
-
- /**
- * 사용자 오픈 ID 가져오기
- * @return 문자열
- */
- 공용 함수 getOpenid()
- {
- $params = [
- 'access_token' => $this->accessToken,
- ];
-
- $url = self::OPEN_ID_URL
-
- $this->openid = $this->parseOpenid( $this->getUrl($url) );
-
- return $this->openid;
- }
-
- /**
- * URL 콘텐츠를 가져오는 get 메서드
- * @param string $url
- * @return 혼합
- */
- 공개 함수 getUrl($url)
- {
- $ch = 컬_init();
- 컬_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE) ; $response 반환;
- }
-
- /**
- * post방식 취급 url 내용
- * @param string $url
- * @param array $keysArr
- * @param number $flag
- * @return mixed
- */
- 공개 함수 postUrl($url, $keysArr, $flag = 0)
- {
- $ch = cur_init();
- if (! $flag) 컬_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
- 컬_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
- 컬_setopt($ch, CURLOPT_POST, TRUE);
- 컬_setopt($ch, CURLOPT_POSTFIELDS , $keysArr);
- 컬_setopt($ch, CURLOPT_URL, $url);
- $ret = 컬_exec($ch);
-
- 컬_close($ch);
- return $ret;
- }
-
-
- /**
- * 상태
- * @return 문자열
- */
- 보호 함수 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'];
- }
- }
-
复system代码
以上所述就是本文의 전체 부서 内容了 ,希望大家能够喜欢。
|