CakeFest 2024: The Official CakePHP Conference

OAuth::setAuthType

(PECL OAuth >= 0.99.1)

OAuth::setAuthTypeSet authorization type

Descrizione

public OAuth::setAuthType(int $auth_type): bool

Set where the OAuth parameters should be passed.

Elenco dei parametri

auth_type

auth_type can be one of the following flags (in order of decreasing preference as per OAuth 1.0 section 5.2):

OAUTH_AUTH_TYPE_AUTHORIZATION
Pass the OAuth parameters in the HTTP Authorization header.
OAUTH_AUTH_TYPE_FORM
Append the OAuth parameters to the HTTP POST request body.
OAUTH_AUTH_TYPE_URI
Append the OAuth parameters to the request URI.
OAUTH_AUTH_TYPE_NONE
None.

Valori restituiti

Returns true if a parameter is correctly set, otherwise false (e.g., if an invalid auth_type is passed in.)

Log delle modifiche

Versione Descrizione
PECL oauth 1.0.0 Prima di questa versione restituiva null in caso di errore, invece di false.

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top