當前位置: 首頁>>代碼示例>>PHP>>正文


PHP OAuthServer::__construct方法代碼示例

本文整理匯總了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
 }
開發者ID:vmorant,項目名稱:ttupf,代碼行數:8,代碼來源:sfOAuthServer.php

示例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();
 }
開發者ID:phill104,項目名稱:branches,代碼行數:10,代碼來源:cpgOAuth.php

示例3: FKOAuthDataStore

 function __construct()
 {
     parent::__construct(new FKOAuthDataStore());
     $this->add_signature_method(new OAuthSignatureMethod_PLAINTEXT());
     $this->add_signature_method(new OAuthSignatureMethod_HMAC_SHA1());
 }
開發者ID:nextgensh,項目名稱:friendica,代碼行數:6,代碼來源:oauth.php

示例4: __construct

 /**
  * constructor to set the signatures
  */
 public function __construct()
 {
     $this->add_signature_method(new OAuthSignatureMethod_HMAC_SHA1());
     parent::__construct(new OAuthSymfonyStore());
 }
開發者ID:42medien,項目名稱:spreadly,代碼行數:8,代碼來源:OAuthSymfonyServer.php

示例5: __construct

 public function __construct($data_store)
 {
     parent::__construct($data_store);
     $this->add_signature_method(new OAuthSignatureMethod_HMAC_SHA1());
 }
開發者ID:te-koyama,項目名稱:openpne,代碼行數:5,代碼來源:opOAuthServer.class.php


注:本文中的OAuthServer::__construct方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。