이 글에서는 주로 Yii2의 OAuth 확장과 QQ 상호 연결 로그인 방법을 소개하고, OAuth 확장의 관련 구성과 QQ 상호 연결 로그인 구현 기술을 예시와 함께 분석합니다. 도움이 필요한 친구들이 참고하면 좋을 것 같아요.
자세한 내용은 다음과 같습니다.
php composer.phar require --prefer-dist yiisoft/yii2-authclient "*"
빠른 시작 빠른 시작
Yii2 구성 파일 config/main.php를 변경하고 구성 요소에 다음 콘텐츠를 추가하세요.
'components' => [ 'authClientCollection' => [ 'class' => 'yii\authclient\Collection', 'clients' => [ 'google' => [ 'class' => 'yii\authclient\clients\GoogleOpenId' ], 'facebook' => [ 'class' => 'yii\authclient\clients\Facebook', 'clientId' => 'facebook_client_id', 'clientSecret' => 'facebook_client_secret', ], ], ] ... ]
항목 파일 변경(보통 app/controllers/SiteController.php) , 함수 Actions에 코드를 추가하고 동시에 콜백 함수인 SuccessCallback을 추가합니다. 대략 다음과 같습니다
class SiteController extends Controller { public function actions() { return [ 'auth' => [ 'class' => 'yii\authclient\AuthAction', 'successCallback' => [$this, 'successCallback'], ], ] } public function successCallback($client) { $attributes = $client->getUserAttributes(); // user login or signup comes here } }
로그인 뷰에 다음 코드를 추가하세요
<?= yii\authclient\widgets\AuthChoice::widget([ 'baseAuthUrl' => ['site/auth'] ])?>
위는 공식 문서입니다. QQ 인터넷에 접속해 보겠습니다.
QQ 로그인 추가 컴포넌트는 common/comComponents/QqOAuth.php에 위치합니다. 소스 코드는 다음과 같습니다
<?php namespace common\components; use yii\authclient\OAuth2; use yii\base\Exception; use yii\helpers\Json; /** * * ~~~ * 'components' => [ * 'authClientCollection' => [ * 'class' => 'yii\authclient\Collection', * 'clients' => [ * 'qq' => [ * 'class' => 'common\components\QqOAuth', * 'clientId' => 'qq_client_id', * 'clientSecret' => 'qq_client_secret', * ], * ], * ] * ... * ] * ~~~ * * @see http://connect.qq.com/ * * @author easypao <admin@easypao.com> * @since 2.0 */ class QqOAuth extends OAuth2 { public $authUrl = 'https://graph.qq.com/oauth2.0/authorize'; public $tokenUrl = 'https://graph.qq.com/oauth2.0/token'; public $apiBaseUrl = 'https://graph.qq.com'; public function init() { parent::init(); if ($this->scope === null) { $this->scope = implode(',', [ 'get_user_info', ]); } } protected function initUserAttributes() { $openid = $this->api('oauth2.0/me', 'GET'); $qquser = $this->api("user/get_user_info", 'GET', ['oauth_consumer_key'=>$openid['client_id'], 'openid'=>$openid['openid']]); $qquser['openid']=$openid['openid']; return $qquser; } protected function defaultName() { return 'qq'; } protected function defaultTitle() { return 'Qq'; } /** * 该扩展初始的处理方法似乎QQ互联不能用,应此改写了方法 * @see \yii\authclient\BaseOAuth::processResponse() */ protected function processResponse($rawResponse, $contentType = self::CONTENT_TYPE_AUTO) { if (empty($rawResponse)) { return []; } switch ($contentType) { case self::CONTENT_TYPE_AUTO: { $contentType = $this->determineContentTypeByRaw($rawResponse); if ($contentType == self::CONTENT_TYPE_AUTO) { //以下代码是特别针对QQ互联登录的,也是与原方法不一样的地方 if(strpos($rawResponse, "callback") !== false){ $lpos = strpos($rawResponse, "("); $rpos = strrpos($rawResponse, ")"); $rawResponse = substr($rawResponse, $lpos + 1, $rpos - $lpos -1); $response = $this->processResponse($rawResponse, self::CONTENT_TYPE_JSON); break; } //代码添加结束 throw new Exception('Unable to determine response content type automatically.'); } $response = $this->processResponse($rawResponse, $contentType); break; } case self::CONTENT_TYPE_JSON: { $response = Json::decode($rawResponse, true); if (isset($response['error'])) { throw new Exception('Response error: ' . $response['error']); } break; } case self::CONTENT_TYPE_URLENCODED: { $response = []; parse_str($rawResponse, $response); break; } case self::CONTENT_TYPE_XML: { $response = $this->convertXmlToArray($rawResponse); break; } default: { throw new Exception('Unknown response type "' . $contentType . '".'); } } return $response; } }
config/main.php 파일을 변경하고 대략 다음과 같이 컴포넌트에 추가합니다
'components' => [ 'authClientCollection' => [ 'class' => 'yii\authclient\Collection', 'clients' => [ 'qq' => [ 'class'=>'common\components\QqOAuth', 'clientId'=>'your_qq_clientid', 'clientSecret'=>'your_qq_secret' ], ], ] ]
SiteController.php
public function successCallback($client) { $attributes = $client->getUserAttributes(); // 用户的信息在$attributes中,以下是您根据您的实际情况增加的代码 // 如果您同时有QQ互联登录,新浪微博等,可以通过 $client->id 来区别。 }
마지막으로 로그인 보기 파일에 QQ 로그인 링크를 추가하세요
<a href="/site/auth?authclient=qq">使用QQ快速登录</a>
관련 권장 사항:
QQ 로그인에 대한 PHP 액세스 OAuth2.0 공유 과정에서 발생하는 함정
Yii2의 컴포넌트 등록 및 생성 방법에 대한 자세한 설명
위 내용은 Yii2는 QQ 인터넷 로그인을 구현합니다의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!