interface OAuth2ManagerInterface in Social API 8.2
Same name and namespace in other branches
- 3.x src/AuthManager/OAuth2ManagerInterface.php \Drupal\social_api\AuthManager\OAuth2ManagerInterface
Defines an OAuth2Manager Interface.
@package Drupal\social_api\OAuth2Manager
Hierarchy
- interface \Drupal\social_api\AuthManager\OAuth2ManagerInterface
Expanded class hierarchy of OAuth2ManagerInterface
All classes that implement OAuth2ManagerInterface
File
- src/
AuthManager/ OAuth2ManagerInterface.php, line 10
Namespace
Drupal\social_api\AuthManagerView source
interface OAuth2ManagerInterface {
/**
* Authenticates the user.
*/
public function authenticate();
/**
* Sets the provider client.
*
* @param mixed $client
* The service client.
*
* @return $this
* The current object.
*/
public function setClient($client);
/**
* Gets the service client object.
*
* @return mixed
* The service client object.
*/
public function getClient();
/**
* Gets the access token after authentication.
*
* @return \League\OAuth2\Client\Token\AccessToken|mixed
* The access token.
*/
public function getAccessToken();
/**
* Sets the access token.
*
* @param \League\OAuth2\Client\Token\AccessToken|mixed $access_token
* The access token.
*
* @return $this
* The current object.
*/
public function setAccessToken($access_token);
/**
* Returns the authorization URL where user will be redirected.
*
* @return string|mixed
* Absolute authorization URL.
*/
public function getAuthorizationUrl();
/**
* Returns OAuth2 state.
*
* @return string
* The OAuth2 state.
*/
public function getState();
/**
* Gets data about the user.
*
* @return \League\OAuth2\Client\Provider\GenericResourceOwner|array|mixed
* User info returned by provider.
*/
public function getUserInfo();
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
OAuth2ManagerInterface:: |
public | function | Authenticates the user. | |
OAuth2ManagerInterface:: |
public | function | Gets the access token after authentication. | 1 |
OAuth2ManagerInterface:: |
public | function | Returns the authorization URL where user will be redirected. | |
OAuth2ManagerInterface:: |
public | function | Gets the service client object. | 1 |
OAuth2ManagerInterface:: |
public | function | Returns OAuth2 state. | |
OAuth2ManagerInterface:: |
public | function | Gets data about the user. | |
OAuth2ManagerInterface:: |
public | function | Sets the access token. | 1 |
OAuth2ManagerInterface:: |
public | function | Sets the provider client. | 1 |