PHP Doku:: Set authorization type - oauth.setauthtype.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzWeb ServicesOAuthThe OAuth classOAuth::setAuthType

Ein Service von Reinhard Neidl - Webprogrammierung.

The OAuth class

<<OAuth::getRequestToken

OAuth::setCAPath>>

OAuth::setAuthType

(PECL OAuth >= 0.99.1)

OAuth::setAuthTypeSet authorization type

Beschreibung

public mixed OAuth::setAuthType ( int $auth_type )

Set where the OAuth parameters should be passed.

Parameter-Liste

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.

Rückgabewerte

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

Changelog

Version Beschreibung
1.0.0 Gab früher bei einem Fehler NULL anstelle von FALSE zurück.


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)