<?php /** * @link http://www.yiiframework.com/ * @copyright Copyright (c) 2008 Yii Software LLC * @license http://www.yiiframework.com/license/ */ namespace yii\authclient\clients; use yii\authclient\OAuth2; /** * GoogleOAuth allows authentication via Google OAuth. * * In order to use Google OAuth you must create a project at <https://console.developers.google.com/project> * and setup its credentials at <https://console.developers.google.com/project/[yourProjectId]/apiui/credential>. * In order to enable using scopes for retrieving user attributes, you should also enable Google+ API at * <https://console.developers.google.com/project/[yourProjectId]/apiui/api/plus> * * Example application configuration: * * ~~~ * 'components' => [ * 'authClientCollection' => [ * 'class' => 'yii\authclient\Collection', * 'clients' => [ * 'google' => [ * 'class' => 'yii\authclient\clients\GoogleOAuth', * 'clientId' => 'google_client_id', * 'clientSecret' => 'google_client_secret', * ], * ], * ] * ... * ] * ~~~ * * @see https://console.developers.google.com/project * * @author Paul Klimov <klimov.paul@gmail.com> * @since 2.0 */ class GoogleOAuth extends OAuth2 { /** * @inheritdoc */ public $authUrl = 'https://accounts.google.com/o/oauth2/auth'; /** * @inheritdoc */ public $tokenUrl = 'https://accounts.google.com/o/oauth2/token'; /** * @inheritdoc */ public $apiBaseUrl = 'https://www.googleapis.com/plus/v1'; /** * @inheritdoc */ public function init() { parent::init(); if ($this->scope === null) { $this->scope = implode(' ', [ 'profile', 'email', ]); } } /** * @inheritdoc */ protected function initUserAttributes() { return $this->api('people/me', 'GET'); } /** * @inheritdoc */ protected function defaultName() { return 'google'; } /** * @inheritdoc */ protected function defaultTitle() { return 'Google'; } }