OAuthProvider::__construct
(PECL OAuth >= 1.0.0)
OAuthProvider::__construct — 新しい OAuthProvider オブジェクトを作る
パラメータ
params_array
-
これらのオプションパラメータを設定できるのは CLI SAPI のみです。
戻り値
OAuthProvider オブジェクトを返します。
例
例1 OAuthProvider::__construct() の例
<?php
try {
$op = new OAuthProvider();
// ユーザー定義のコールバック関数を使います
$op->consumerHandler(array($this, 'lookupConsumer'));
$op->timestampNonceHandler(array($this, 'timestampNonceChecker'));
$op->tokenHandler(array($this, 'myTokenHandler'));
// foo_uri パラメータは無視します
$op->setParam('foo_uri', NULL);
// このエンドポイントにはトークンは不要です
$op->setRequestTokenPath('/v1/oauth/request_token');
$op->checkOAuthRequest();
} catch (OAuthException $e) {
echo OAuthProvider::reportProblem($e);
}
?>
参考
- OAuthProvider::setParam() - パラメータを設定する
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google