interface SimpleOauthAuthenticationProviderInterface in Simple OAuth (OAuth2) & OpenID Connect 8
Same name and namespace in other branches
- 8.2 src/Authentication/Provider/SimpleOauthAuthenticationProviderInterface.php \Drupal\simple_oauth\Authentication\Provider\SimpleOauthAuthenticationProviderInterface
Class SimpleOauthAuthenticationProviderInterface.
@package Drupal\simple_oauth\Authentication\Provider
Hierarchy
- interface \Drupal\Core\Authentication\AuthenticationProviderInterface
- interface \Drupal\simple_oauth\Authentication\Provider\SimpleOauthAuthenticationProviderInterface
Expanded class hierarchy of SimpleOauthAuthenticationProviderInterface
All classes that implement SimpleOauthAuthenticationProviderInterface
File
- src/
Authentication/ Provider/ SimpleOauthAuthenticationProviderInterface.php, line 13
Namespace
Drupal\simple_oauth\Authentication\ProviderView source
interface SimpleOauthAuthenticationProviderInterface extends AuthenticationProviderInterface {
/**
* Gets the access token from the request.
*
* @param \Symfony\Component\HttpFoundation\Request $request
* The request object.
*
* @return string
* The access token.
*
* @see http://tools.ietf.org/html/rfc6750
*/
public static function getTokenValue(Request $request);
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
AuthenticationProviderInterface:: |
public | function | Checks whether suitable authentication credentials are on the request. | 7 |
AuthenticationProviderInterface:: |
public | function | Authenticates the user. | 7 |
SimpleOauthAuthenticationProviderInterface:: |
public static | function | Gets the access token from the request. | 1 |