baseApiUri = new Uri('https://api.github.com/'); } } /** * {@inheritdoc} */ public function getAuthorizationEndpoint() { return new Uri('https://github.com/login/oauth/authorize'); } /** * {@inheritdoc} */ public function getAccessTokenEndpoint() { return new Uri('https://github.com/login/oauth/access_token'); } /** * {@inheritdoc} */ protected function getAuthorizationMethod() { return static::AUTHORIZATION_METHOD_HEADER_TOKEN; } /** * {@inheritdoc} */ protected function parseAccessTokenResponse($responseBody) { $data = json_decode($responseBody, true); if (null === $data || !is_array($data)) { throw new TokenResponseException('Unable to parse response.'); } elseif (isset($data['error'])) { throw new TokenResponseException('Error in retrieving token: "' . $data['error'] . '"'); } $token = new StdOAuth2Token(); $token->setAccessToken($data['access_token']); // Github tokens evidently never expire... $token->setEndOfLife(StdOAuth2Token::EOL_NEVER_EXPIRES); unset($data['access_token']); $token->setExtraParams($data); return $token; } /** * Used to configure response type -- we want JSON from github, default is query string format. * * @return array */ protected function getExtraOAuthHeaders() { return ['Accept' => 'application/json']; } /** * Required for GitHub API calls. * * @return array */ protected function getExtraApiHeaders() { return ['Accept' => 'application/vnd.github.v3+json']; } /** * {@inheritdoc} */ protected function getScopesDelimiter() { return ','; } }