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


PHP CHTTP::GET方法代码示例

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


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

示例1: getSharedEmbedLink

 public function getSharedEmbedLink(array $fileData)
 {
     $accessToken = $this->getAccessToken();
     $fileId = $fileData['id'];
     $http = new CHTTP();
     $http->http_timeout = 10;
     if (!$http->GET("https://apis.live.net/v5.0/{$fileId}/embed?access_token=" . urlencode($accessToken))) {
         return false;
     }
     // error checking
     if ($http->status != "200") {
         return false;
     }
     $response = json_decode($http->result, true);
     if (preg_match('%src="(.*)"%iuU', $response['embed_html'], $m)) {
         return $m[1];
     }
     return false;
 }
开发者ID:DarneoStudio,项目名称:bitrix,代码行数:19,代码来源:editskydrive.php

示例2: downloadFile

 public function downloadFile(array $fileData)
 {
     $accessToken = $this->getAccessToken();
     $id = $fileData['id'];
     $mimeType = $fileData['mimeType'];
     @set_time_limit(0);
     $http = new CHTTP();
     $http->http_timeout = 10;
     $http->SetAdditionalHeaders(array("Authorization" => "Bearer {$accessToken}"));
     if (!$http->GET('https://www.googleapis.com/drive/v2/files/' . $id)) {
         return false;
     }
     // access token expired, let's get a new one and try again
     if ($http->status == "401") {
         //todo: invalid credential response
         return false;
     }
     // error checking
     if ($http->status != "200") {
         return false;
     }
     $file = json_decode($http->result, true);
     $links = $file['exportLinks'];
     $link = empty($links[$mimeType]) ? '' : $links[$mimeType];
     if (!$link) {
         $link = $file['downloadUrl'];
     }
     $http = new CHTTP();
     $http->http_timeout = 10;
     $http->SetAdditionalHeaders(array("Authorization" => "Bearer {$accessToken}"));
     if (!$http->GET($link)) {
         return false;
     }
     $file['content'] = $http->result ? $http->result : '';
     CWebDavTools::convertFromUtf8($file['title']);
     $file['name'] = $file['title'];
     $this->recoverExtensionInName($file, $mimeType);
     return $file;
 }
开发者ID:DarneoStudio,项目名称:bitrix,代码行数:39,代码来源:editdocgoogle.php


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