OAuth::getRequestToken

(PECL OAuth >= 0.99.1)

OAuth::getRequestTokenリクエストトークンを取得する

説明

public OAuth::getRequestToken(string $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 advisory を指すことになります。

http_method

利用する HTTP メソッド。GETPOST など。

戻り値

成功した場合は OAuth レスポンスをパースした配列、失敗した場合は false を返します。

変更履歴

バージョン 説明
PECL oauth 1.0.0 以前は、失敗したときに false ではなく null を返していました。
PECL oauth 0.99.9 callback_url パラメータが追加されました。

例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
)

参考

add a note

User Contributed Notes 1 note

up
0
bohwaz
14 years ago
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.
To Top