[ * 'authClientCollection' => [ * 'class' => 'yii\authclient\Collection', * 'clients' => [ * 'github' => [ * 'class' => 'yii\authclient\clients\GitHub', * 'clientId' => 'github_client_id', * 'clientSecret' => 'github_client_secret', * ], * ], * ] * ... * ] * ~~~ * * @see http://developer.github.com/v3/oauth/ * @see https://github.com/settings/applications/new * * @author Paul Klimov * @since 2.0 */ class GitHub extends OAuth2 { /** * @inheritdoc */ public $authUrl = 'https://github.com/login/oauth/authorize'; /** * @inheritdoc */ public $tokenUrl = 'https://github.com/login/oauth/access_token'; /** * @inheritdoc */ public $apiBaseUrl = 'https://api.github.com'; /** * @inheritdoc */ public function init() { parent::init(); if ($this->scope === null) { $this->scope = implode(' ', [ 'user', 'user:email', ]); } } /** * @inheritdoc */ protected function initUserAttributes() { return $this->api('user', 'GET'); } }