当前位置: 首页>>代码示例>>PHP>>正文


PHP Zend_Oauth_Config::setOptions方法代码示例

本文整理汇总了PHP中Zend_Oauth_Config::setOptions方法的典型用法代码示例。如果您正苦于以下问题:PHP Zend_Oauth_Config::setOptions方法的具体用法?PHP Zend_Oauth_Config::setOptions怎么用?PHP Zend_Oauth_Config::setOptions使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Zend_Oauth_Config的用法示例。


在下文中一共展示了Zend_Oauth_Config::setOptions方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: __construct

 /**
  * Constructor; create a new object with an optional array|Zend_Config
  * instance containing initialising options.
  *
  * @param  array|Zend_Config $options
  * @return void
  */
 public function __construct($options = null)
 {
     $this->_config = new Zend_Oauth_Config();
     if ($options !== null) {
         if ($options instanceof Zend_Config) {
             $options = $options->toArray();
         }
         $this->_config->setOptions($options);
     }
 }
开发者ID:GerDner,项目名称:luck-docker,代码行数:17,代码来源:Consumer.php

示例2: __construct

 /**
  * Constructor; creates a new HTTP Client instance which itself is
  * just a typical Zend_Http_Client subclass with some OAuth icing to
  * assist in automating OAuth parameter generation, addition and
  * cryptographioc signing of requests.
  *
  * @param array $oauthOptions
  * @param string $uri
  * @param array|Zend_Config $config
  * @return void
  */
 public function __construct(array $oauthOptions, $uri = null, $config = null)
 {
     parent::__construct($uri, $config);
     $this->_config = new Zend_Oauth_Config();
     if (!is_null($oauthOptions)) {
         if ($oauthOptions instanceof Zend_Config) {
             $oauthOptions = $oauthOptions->toArray();
         }
         $this->_config->setOptions($oauthOptions);
     }
 }
开发者ID:jacquesbagui,项目名称:ofuz,代码行数:22,代码来源:Client.php

示例3: __construct

 /**
  * Constructor; creates a new HTTP Client instance which itself is
  * just a typical Zend_Http_Client subclass with some OAuth icing to
  * assist in automating OAuth parameter generation, addition and
  * cryptographioc signing of requests.
  *
  * @param  array $oauthOptions
  * @param  string $uri
  * @param  array|Zend_Config $config
  * @return void
  */
 public function __construct($oauthOptions, $uri = null, $config = null)
 {
     if (!isset($config['rfc3986_strict'])) {
         $config['rfc3986_strict'] = true;
     }
     parent::__construct($uri, $config);
     $this->_config = new Zend_Oauth_Config();
     if ($oauthOptions !== null) {
         if ($oauthOptions instanceof Zend_Config) {
             $oauthOptions = $oauthOptions->toArray();
         }
         $this->_config->setOptions($oauthOptions);
     }
 }
开发者ID:mrwalruss,项目名称:thegioistatus,代码行数:25,代码来源:Client.php

示例4: __construct

 /**
  * Constructor; creates a new HTTP Client instance which itself is
  * just a typical Zend_Http_Client subclass with some OAuth icing to
  * assist in automating OAuth parameter generation, addition and
  * cryptographioc signing of requests.
  *
  * @param  array|Zend_Config $oauthOptions
  * @param  string            $uri
  * @param  array|Zend_Config $config
  * @return void
  */
 public function __construct($oauthOptions, $uri = null, $config = null)
 {
     if ($config instanceof Zend_Config && !isset($config->rfc3986_strict)) {
         $config                   = $config->toArray();
         $config['rfc3986_strict'] = true;
     } else if (null === $config ||
                (is_array($config) && !isset($config['rfc3986_strict']))) {
         $config['rfc3986_strict'] = true;
     }
     parent::__construct($uri, $config);
     $this->_config = new Zend_Oauth_Config;
     if ($oauthOptions !== null) {
         if ($oauthOptions instanceof Zend_Config) {
             $oauthOptions = $oauthOptions->toArray();
         }
         $this->_config->setOptions($oauthOptions);
     }
 }
开发者ID:nhp,项目名称:shopware-4,代码行数:29,代码来源:Client.php

示例5: array

 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
require_once 'common.php';
require_once 'Zend/Oauth.php';
require_once 'Zend/Oauth/Config.php';
require_once 'Zend/Oauth/Token/Access.php';
require_once 'Zend/Mail/Protocol/Imap.php';
require_once 'Zend/Mail/Storage/Imap.php';
/**
 * Setup OAuth
 */
$options = array('requestScheme' => Zend_Oauth::REQUEST_SCHEME_HEADER, 'version' => '1.0', 'signatureMethod' => 'HMAC-SHA1', 'consumerKey' => $TWO_LEGGED_CONSUMER_KEY, 'consumerSecret' => $TWO_LEGGED_CONSUMER_SECRET_HMAC);
$config = new Zend_Oauth_Config();
$config->setOptions($options);
$config->setToken(new Zend_Oauth_Token_Access());
$config->setRequestMethod('GET');
$url = 'https://mail.google.com/mail/b/' . $TWO_LEGGED_EMAIL_ADDRESS . '/imap/';
$urlWithXoauth = $url . '?xoauth_requestor_id=' . urlencode($TWO_LEGGED_EMAIL_ADDRESS);
$httpUtility = new Zend_Oauth_Http_Utility();
/**
 * Get an unsorted array of oauth params,
 * including the signature based off those params.
 */
$params = $httpUtility->assembleParams($url, $config, array('xoauth_requestor_id' => $TWO_LEGGED_EMAIL_ADDRESS));
/**
 * Sort parameters based on their names, as required
 * by OAuth.
 */
ksort($params);
开发者ID:manasaShivanna,项目名称:gmail-oauth2-tools,代码行数:31,代码来源:two-legged.php

示例6: setOptions

 /**
  * Parse option array or Zend_Config instance and setup options using their
  * relevant mutators.
  *
  * @param  array|Zend_Config $options
  * @return Zend_Oauth_Config
  */
 public function setOptions(array $options)
 {
     parent::setOptions($options);
     foreach ($options as $key => $value) {
         switch ($key) {
             case 'realm':
                 $this->setRealm($value);
                 break;
         }
     }
     return $this;
 }
开发者ID:felipedmz,项目名称:OX3-PHP-API-Client,代码行数:19,代码来源:OX3_Api_Client.php


注:本文中的Zend_Oauth_Config::setOptions方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。