public function OpenIDConnectGithubClient::authorize in OpenID Connect / OAuth client 8
Same name and namespace in other branches
- 2.x src/Plugin/OpenIDConnectClient/OpenIDConnectGithubClient.php \Drupal\openid_connect\Plugin\OpenIDConnectClient\OpenIDConnectGithubClient::authorize()
Redirects the user to the authorization endpoint.
The authorization endpoint authenticates the user and returns them to the redirect_uri specified previously with an authorization code that can be exchanged for an access token.
Parameters
string $scope: Name of scope(s) that with user consent will provide access to otherwise restricted user data. Defaults to "openid email".
Return value
\Symfony\Component\HttpFoundation\Response A response object.
Overrides OpenIDConnectClientBase::authorize
File
- src/
Plugin/ OpenIDConnectClient/ OpenIDConnectGithubClient.php, line 65
Class
- OpenIDConnectGithubClient
- GitHub OpenID Connect client.
Namespace
Drupal\openid_connect\Plugin\OpenIDConnectClientCode
public function authorize($scope = 'openid email') {
// Use GitHub specific authorisations.
return parent::authorize('user:email');
}