You are here

protected property Client::$params in OAuth2 Client 7.2

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

Associative array of the parameters that are needed by the different types of authorization flows.

Type: array

File

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

Class

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

Namespace

OAuth2

Code

protected $params = array(
  'auth_flow' => NULL,
  'client_id' => NULL,
  'client_secret' => NULL,
  'token_endpoint' => NULL,
  'authorization_endpoint' => NULL,
  'revoke_endpoint' => NULL,
  'redirect_uri' => NULL,
  'scope' => NULL,
  'resource' => NULL,
  'username' => NULL,
  'password' => NULL,
  'skip-ssl-verification' => FALSE,
);