OAuth::getLastResponse

(PECL OAuth >= 0.99.1) Get the last response public string OAuth::getLastResponse ( void ) Get the raw response of the most recent request. Returns: Returns a string containing the last response. See also: OAuth::getLastResponseInfo() - OAuth::fetch() -

OAuth::getCAPath

(PECL OAuth >= 0.99.8) Gets CA information public array OAuth::getCAPath ( void ) Gets the Certificate Authority information, which includes the ca_path and ca_info set by OAuth::setCaPath(). Returns: An array of Certificate Authority information, specifically as ca_path and ca_info keys within the returned associative array. This function is currently not d

OAuth::getAccessToken

(PECL OAuth >= 0.99.1) Fetch an access token public array OAuth::getAccessToken ( string $access_token_url [, string $auth_session_handle [, string $verifier_token [, string $http_method ]]] ) Fetch an access token, secret and any additional response parameters from the service provider. Parameters: access_token_url URL to the access token API. a

OAuth::generateSignature

(No version information available, might only be in Git) Generate a signature public string OAuth::generateSignature ( string $http_method, string $url [, mixed $extra_parameters ] ) Generate a signature based on the final HTTP method, URL and a string/array of parameters. Parameters: http_method HTTP method for request url URL for requ

OAuth::fetch

(PECL OAuth >= 0.99.1) Fetch an OAuth protected resource public mixed OAuth::fetch ( string $protected_resource_url [, array $extra_parameters [, string $http_method [, array $http_headers ]]] ) Fetch a resource. Parameters: protected_resource_url URL to the OAuth protected resource. extra_parameters Extra parameters to send with the

OAuth::enableSSLChecks

(PECL OAuth >= 0.99.5) Turn on SSL checks public bool OAuth::enableSSLChecks ( void ) Turns on the usual SSL peer certificate and host checks (enabled by default). Alternatively, the sslChecks member can be set to a non-FALSE value to turn SSL checks off. Returns: TRUE Changelog: 0.99.8 The sslChecks member was added

OAuth::enableRedirects

(PECL OAuth >= 0.99.9) Turn on redirects public bool OAuth::enableRedirects ( void ) Follow and sign redirects automatically, which is enabled by default. Returns: TRUE This function is currently not documented; only its argument list is available. See also: OAuth::

OAuth::enableDebug

(PECL OAuth >= 0.99.3) Turn on verbose debugging public bool OAuth::enableDebug ( void ) Turns on verbose request information useful for debugging, the debug information is stored in the debugInfo member. Alternatively, the debug member can be set to a non-FALSE value to turn debug on. Returns: TRUE Changelog: 0.99.8 The debug and debugIn

OAuth::disableSSLChecks

(PECL OAuth >= 0.99.5) Turn off SSL checks public bool OAuth::disableSSLChecks ( void ) Turns off the usual SSL peer certificate and host checks, this is not for production environments. Alternatively, the sslChecks member can be set to FALSE to turn SSL checks off. Returns: TRUE Changelog: 0.99.8 The sslChecks member was added

OAuth::disableRedirects

(PECL OAuth >= 0.99.9) Turn off redirects public bool OAuth::disableRedirects ( void ) Disable redirects from being followed automatically, thus allowing the request to be manually redirected. Returns: TRUE This function is currently not documented; only its argument list is available.