You are here

protected property OAuth2Client::$token in OAuth2 Client 8

Associated array that keeps data about the access token.

Type: array

File

src/Service/OAuth2Client.php, line 79

Class

OAuth2Client
OAuth2Client service.

Namespace

Drupal\oauth2_client\Service

Code

protected $token = [
  'access_token' => NULL,
  'expires_in' => NULL,
  'token_type' => NULL,
  'scope' => NULL,
  'refresh_token' => NULL,
  'expiration_time' => NULL,
];