|
OAuth::getRequestTokenFetch a request token Beschreibung
public array OAuth::getRequestToken
( string
$request_token_url
[, string $callback_url
[, string $http_method
]] )Fetch a request token, secret and any additional response parameters from the service provider. Parameter-Liste
Rückgabewerte
Returns an array containing the parsed OAuth response on success or Changelog
Beispiele
Beispiel #1 OAuth::getRequestToken example
<?phpDas oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
Array
(
[oauth_token] => some_token
[oauth_token_secret] => some_token_secret
)
Siehe auch
|