You are here

protected property Client::$token in OAuth2 Client 7.2

Same name and namespace in other branches
  1. 7 oauth2_client.inc \OAuth2\Client::token

Associated array that keeps data about the access token.

Type: array

File

src/Client.php, line 74
Class OAuth2\Client.

Class

Client
The class OAuth2\Client is used to communicate with an oauth2 server.

Namespace

OAuth2

Code

protected $token = array(
  'access_token' => NULL,
  'expires_in' => NULL,
  'token_type' => NULL,
  'scope' => NULL,
  'refresh_token' => NULL,
  'expiration_time' => NULL,
);