OAuth::setAuthType
(PECL OAuth >= 0.99.1)
Set authorization type
Description
Set where the OAuth parameters should be passed.
Parameters
auth_typeauth_typecan be one of the following flags (in order of decreasing preference as per OAuth 1.0 section 5.2):OAUTH_AUTH_TYPE_AUTHORIZATIONPass the OAuth parameters in the HTTP
Authorizationheader.OAUTH_AUTH_TYPE_FORMAppend the OAuth parameters to the HTTP POST request body.
OAUTH_AUTH_TYPE_URIAppend the OAuth parameters to the request URI.
OAUTH_AUTH_TYPE_NONENone.
Return Values
Returns true if a parameter is correctly set, otherwise false (e.g., if an invalid auth_type is passed in.)
Changelog
| Version | Description |
|---|---|
| PECL oauth 1.0.0 | Null |