当前位置: 首页>>代码示例>>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;未经允许,请勿转载。