authclient\OAuth1 $consumerKey

$consumerKey public property OAuth consumer key. public string $consumerKey = null

authclient\OAuth1 $accessTokenMethod

$accessTokenMethod public property Access token HTTP method. public string $accessTokenMethod = 'GET'

authclient\InvalidResponseException $responseHeaders

$responseHeaders public property Response headers. public array $responseHeaders = []

authclient\InvalidResponseException __construct()

__construct() public method Constructor. public void __construct ( $responseHeaders, $responseBody, $message = null, $code = 0, Exception $previous = null )$responseHeaders array Response headers $responseBody string Response body $message string Error message $code integer Error code $previous Exception The previous exception used for the exception chaining.

authclient\InvalidResponseException $responseBody

$responseBody public property Response body. public string $responseBody = ''

authclient\Collection getClients()

getClients() public method public yii\authclient\ClientInterface[] getClients ( )return yii\authclient\ClientInterface[] List of auth clients.

authclient\Collection getClient()

getClient() public method public yii\authclient\ClientInterface getClient ( $id )$id string Service id. return yii\authclient\ClientInterface Auth client instance. throws yii\base\InvalidParamException on non existing client request.

authclient\Collection setClients()

setClients() public method public void setClients ( array $clients )$clients array List of auth clients

authclient\Collection hasClient()

hasClient() public method Checks if client exists in the hub. public boolean hasClient ( $id )$id string Client id. return boolean Whether client exist.

authclient\Collection createClient()

createClient() protected method Creates auth client instance from its array configuration. protected yii\authclient\ClientInterface createClient ( $id, $config )$id string Auth client id. $config array Auth client instance configuration. return yii\authclient\ClientInterface Auth client instance.