本文整理匯總了PHP中OAuthServer::__construct方法的典型用法代碼示例。如果您正苦於以下問題:PHP OAuthServer::__construct方法的具體用法?PHP OAuthServer::__construct怎麽用?PHP OAuthServer::__construct使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類OAuthServer
的用法示例。
在下文中一共展示了OAuthServer::__construct方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: __construct
public function __construct($data_store)
{
parent::__construct($data_store);
$hmac_method = new OAuthSignatureMethod_HMAC_SHA1();
$this->add_signature_method($hmac_method);
$this->timestamp_threshold = 300;
// a token (in requestToken) expires before 300 secondes
}
示例2:
function __construct($consumer_key, $nonce, $timestamp, $signature_method, $signature, $token)
{
$this->setParam('oauth_token', $token, true);
$this->setParam('oauth_consumer_key', $consumer_key, true);
$this->setParam('oauth_nonce', $nonce, true);
$this->setParam('oauth_timestamp', $timestamp, true);
$this->setParam('oauth_signature_method', $signature_method, true);
$this->setParam('oauth_signature', $signature, true);
parent::__construct();
}
示例3: FKOAuthDataStore
function __construct()
{
parent::__construct(new FKOAuthDataStore());
$this->add_signature_method(new OAuthSignatureMethod_PLAINTEXT());
$this->add_signature_method(new OAuthSignatureMethod_HMAC_SHA1());
}
示例4: __construct
/**
* constructor to set the signatures
*/
public function __construct()
{
$this->add_signature_method(new OAuthSignatureMethod_HMAC_SHA1());
parent::__construct(new OAuthSymfonyStore());
}
示例5: __construct
public function __construct($data_store)
{
parent::__construct($data_store);
$this->add_signature_method(new OAuthSignatureMethod_HMAC_SHA1());
}