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 — 获取一个请求令牌
$request_token_url
, string $callback_url
= ?, string $http_method
= ?): array从服务提供者那里获取一个请求令牌、secret 、以及一些附带的响应参数。
request_token_url
请求令牌 API 的 URL。
callback_url
OAuth 回调 URL。 如果传递了 callback_url
且为空值,则将其设置为“oob”即到 OAuth 2009.1 咨询的地址。
http_method
要使用的 HTTP 方法,例如 GET
或 POST
。
成功则返回一个包含解析过了的 OAuth 响应的数组,失败则返回 false
。
示例 #1 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 "Failed fetching request token, response was: " . $oauth->getLastResponse();
}
} catch(OAuthException $E) {
echo "Response: ". $E->lastResponse . "\n";
}
?>
以上示例的输出类似于:
Array ( [oauth_token] => some_token [oauth_token_secret] => some_token_secret )