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


PHP OAuthRequest::get_parameters方法代码示例

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


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

示例1: toXML

 /**
  * Serialize the objet to XML
  */
 public function toXML()
 {
     $xml = Parser::convertToDOMDocument("<lti />");
     $this->appendElement($xml, "id", $this->getID());
     $this->appendElement($xml, "instructor", $this->isInstructor());
     foreach ($this->request->get_parameters() as $id => $value) {
         $this->appendElement($xml, $id, $value);
     }
     return $xml;
 }
开发者ID:fresnostate-library,项目名称:xerxes,代码行数:13,代码来源:Basic.php

示例2: testGetAllParameters

 public function testGetAllParameters()
 {
     // Yes, a awesomely boring test.. But if this doesn't work, the other tests is unreliable
     $request = new OAuthRequest('', '', array('test' => 'foo'));
     $this->assertEquals(array('test' => 'foo'), $request->get_parameters(), 'Failed to read back parameters');
     $request = new OAuthRequest('', '', array('test' => 'foo', 'bar' => 'baz'));
     $this->assertEquals(array('test' => 'foo', 'bar' => 'baz'), $request->get_parameters(), 'Failed to read back parameters');
     $request = new OAuthRequest('', '', array('test' => array('foo', 'bar')));
     $this->assertEquals(array('test' => array('foo', 'bar')), $request->get_parameters(), 'Failed to read back parameters');
 }
开发者ID:kawahara,项目名称:test_mobile_app,代码行数:10,代码来源:OAuthRequestTest.php

示例3: _performRequest

 /**
  * Performs a OAuthRequest, returning the response
  * You can give a token to force signatures with this
  * token. If none given, the token used when creating
  * this instance of CampusNotesAPI is used
  * @param OAuthRequest $req
  * @param OAuthToken $token 
  * @return string
  * @throws CNApiException
  */
 private function _performRequest(OAuthRequest $req, OAuthToken $token = null)
 {
     $token = $token ? $token : $this->oauth_token;
     $req->sign_request($this->hmac_signature_method, $this->oauth_consumer, $token);
     $curl = curl_init();
     $params = $req->get_parameters();
     foreach (array_keys($params) as $i) {
         if (substr($i, 0, 6) == 'oauth_') {
             unset($params[$i]);
         }
     }
     $url = $req->get_normalized_http_url();
     if ($req->get_normalized_http_method() == 'POST') {
         curl_setopt($curl, CURLOPT_POST, true);
         curl_setopt($curl, CURLOPT_POSTFIELDS, http_build_query($params));
     } else {
         if (count($params)) {
             $url .= '?' . http_build_query($params);
         }
     }
     curl_setopt($curl, CURLOPT_URL, $url);
     curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
     curl_setopt($curl, CURLOPT_HTTPHEADER, array($req->to_header()));
     $rtn = curl_exec($curl);
     if (!$rtn) {
         throw new OAuthClientException(curl_error($curl));
     } else {
         if (curl_getinfo($curl, CURLINFO_HTTP_CODE) != 200) {
             throw new OAuthClientException($rtn);
         } else {
             return $rtn;
         }
     }
 }
开发者ID:redspider,项目名称:Entrecredits-API,代码行数:44,代码来源:EccOAuth.php


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