本文整理汇总了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());
}