public function OpenIDConnectGithubClient::authorize in OpenID Connect / OAuth client 2.x
Same name and namespace in other branches
- 8 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 67
Class
- OpenIDConnectGithubClient
- GitHub OpenID Connect client.
Namespace
Drupal\openid_connect\Plugin\OpenIDConnectClientCode
public function authorize(string $scope = 'openid email') : Response {
// Use GitHub specific authorisations.
return parent::authorize('user:email');
}