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\OAuth1 $accessTokenMethod

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

authclient\OAuth1 $accessTokenUrl

$accessTokenUrl public property OAuth access token URL. public string $accessTokenUrl = null

authclient\OAuth1 $consumerKey

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

authclient\OAuth1 $consumerSecret

$consumerSecret public property OAuth consumer secret. public string $consumerSecret = null

authclient\OAuth1 $requestTokenMethod

$requestTokenMethod public property Request token HTTP method. public string $requestTokenMethod = 'GET'

authclient\OAuth1 $requestTokenUrl

$requestTokenUrl public property OAuth request token URL. public string $requestTokenUrl = null

authclient\OAuth1 $version

$version public property Protocol version. public string $version = '1.0'

authclient\OAuth1 apiInternal()

apiInternal() protected method Performs request to the OAuth API. protected array apiInternal ( $accessToken, $url, $method, array $params, array $headers )$accessToken yii\authclient\OAuthToken Actual access token. $url string Absolute API URL. $method string Request method. $params array Request parameters. $headers array Additional request headers. return array API response. throws yii\base\Exception on failure.