©
이 문서에서는 PHP 중국어 웹사이트 매뉴얼 풀어 주다
(PECL OAuth >= 0.99.1)
OAuth::getRequestToken — 获取一个请求令牌
$request_token_url
[, string $callback_url
] )从服务提供者那里获取一个请求令牌、secret 、以及一些附带的响应参数。
request_token_url
请求令牌 API 的 URL。
callback_url
OAuth 回调 URL。 如果传递了 callback_url
且为空值,则将其设置为“oob”即到 OAuth 2009.1 咨询的地址。
成功则返回一个包含解析过了的 OAuth 响应的数组,失败则返回 FALSE
。
版本 | 说明 |
---|---|
1.0.0 |
以前失败时返回 NULL ,而不是 FALSE 。
|
0.99.9 |
增加 callback_url 参数。
|
Example #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 )
[#1] bohwaz [2010-03-29 07:29:19]
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.