Please note that if you don't supply callback_url, the oauth parameter oauth_callback will not be sent to the server and will result in an error from the server, as this parameter is REQUIRED in the OAuth spec.
(PECL OAuth >= 0.99.1)
OAuth::getRequestToken — Obtiene un token de petición
$request_token_url
, string $callback_url
= ?, string $http_method
= ?): arrayObtiene un token de petición, secreto y cualquier parámetro adicional de respuesta del proveedor de servicio.
request_token_url
URL al token de solicitud de la API.
callback_url
URL del callback OAuth. Si callback_url
es pasado y es un valor vacío, este es puesto a "oob" para satisfacer las exigencias de OAuth 2009.1 advisory.
http_method
Método HTTP a usar, por ejemplo GET
o POST
.
Devuelve un array conteniendo las respuestas OAuth analizadas al tener éxitoo false
al fallar.
Versión | Descripción |
---|---|
1.0.0 |
Antes devolvía null en caso de falla, en lugar de false .
|
0.99.9 |
El parámetro callback_url fue agregado
|
Ejemplo #1 Ejemplo de OAuth::getRequestToken()
<?php
try {
$oauth = new OAuth(OAUTH_CONSUMER_KEY,OAUTH_CONSUMER_SECRET);
$request_token_info = $oauth->getRequestToken("https://example.com/oauth/request_token");
if(!empty($request_token_info)) {
print_r($request_token_info);
} else {
print "Falló obteniendo el token de petición, la respuesta fue: " . $oauth->getLastResponse();
}
} catch(OAuthException $E) {
echo "Respuesta: ". $E->lastResponse . "\n";
}
?>
El resultado del ejemplo sería algo similar a:
Array ( [oauth_token] => some_token [oauth_token_secret] => some_token_secret )