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


PHP Utils::getURLContents方法代码示例

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


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

示例1: apiRequestFullURL

 /**
  * Make a Graph API request with the absolute URL. This URL needs to include the https://graph.facebook.com/ at
  * the start and all the query string parameters EXCEPT the acces token.
  *
  * This is for use in paging, when the API payload specifies the full URL for the next page.
  *
  * @param str $url
  * @param str $access_token
  * @return array Decoded JSON response
  */
 public static function apiRequestFullURL($url, $access_token = null)
 {
     $params = array();
     if (isset($access_token)) {
         //Add access_token
         $params['access_token'] = $access_token;
         $access_token_str = http_build_query($params);
         if (strpos($url, '?') === false) {
             $url = $url . '?' . $access_token_str;
         } else {
             $url = $url . '&' . $access_token_str;
         }
     }
     //DEBUG
     // if (php_sapi_name() == "cli") {//Crawler being run at the command line
     //     Logger::getInstance()->logInfo("Graph API call: ".$url, __METHOD__.','.__LINE__);
     // }
     $result = Utils::getURLContents($url);
     try {
         // if (php_sapi_name() == "cli") {//Crawler being run at the command line
         //     Logger::getInstance()->logInfo("Graph API call payload: ".$result, __METHOD__.','.__LINE__);
         // }
         return JSONDecoder::decode($result);
     } catch (JSONDecoderException $e) {
         return $result;
     }
 }
开发者ID:pepeleproso,项目名称:ThinkUp,代码行数:37,代码来源:class.FacebookGraphAPIAccessor.php

示例2: apiRequest

 /** Make a foursquare API request.
  * @param str $endpoint API endpoint to access
  * @param str $access_token OAuth token for the user
  * @param arr $fields Array of URL parameters
  * @return array Decoded JSON response
  */
 public function apiRequest($endpoint, $access_token, $fields = null)
 {
     // Add endpoint and OAuth token to the URL
     $url = $this->api_domain . $endpoint . '?oauth_token=' . $access_token;
     // If there are additional parameters passed in add them to the URL also
     if ($fields != null) {
         foreach ($fields as $key => $value) {
             $url = $url . '&' . $key . '=' . $value;
         }
     }
     // Foursquare requires us to add the date at the end of the request so get a date array
     $date = getdate();
     // Add the year month and day at the end of the URL
     $url = $url . "&v=" . $date['year'] . $date['mon'] . $date['mday'];
     // Get any results returned from this request
     $result = Utils::getURLContents($url);
     // Return the results
     $parsed_result = json_decode($result);
     if (isset($parsed_result->meta->errorType)) {
         $exception_description = $parsed_result->meta->errorType;
         if (isset($parsed_result->meta->errorDetail)) {
             $exception_description .= ": " . $parsed_result->meta->errorDetail;
         }
         throw new Exception($exception_description);
     } else {
         return $parsed_result;
     }
 }
开发者ID:nagyistoce,项目名称:ThinkUp,代码行数:34,代码来源:class.FoursquareAPIAccessor.php

示例3: rawApiRequest

 /**
  * Make a Graph API request with the absolute URL. This URL needs to include the https://graph.facebook.com/ at
  * the start and the access token at the end as well as everything in between. It is literally the raw URL that
  * needs to be passed in.
  *
  * @param str $path
  * @param book $decode_json Defaults to true, if true returns decoded JSON
  * @return array Decoded JSON response
  */
 public static function rawApiRequest($path, $decode_json = true)
 {
     if ($decode_json) {
         $result = Utils::getURLContents($path);
         return json_decode($result);
     } else {
         return Utils::getURLContents($path);
     }
 }
开发者ID:rmanalan,项目名称:ThinkUp,代码行数:18,代码来源:class.FacebookGraphAPIAccessor.php

示例4: apiRequest

 /**
  * Make a Graph API request.
  * @param str $path
  * @param str $access_token
  * @return array Decoded JSON response
  */
 public static function apiRequest($path, $access_token, $fields = null)
 {
     $api_domain = 'https://graph.facebook.com';
     $url = $api_domain . $path . '?access_token=' . $access_token;
     if ($fields != null) {
         $url = $url . '&fields=' . $fields;
     }
     $result = Utils::getURLContents($url);
     return json_decode($result);
 }
开发者ID:unruthless,项目名称:ThinkUp,代码行数:16,代码来源:class.FacebookGraphAPIAccessor.php

示例5: apiRequest

 /**
  * Make an API request.
  * @param str $path
  * @param str $access_token
  * @param arr $fields Array of URL parameters
  * @return array Decoded JSON response
  */
 public function apiRequest($path, $access_token, $fields = null)
 {
     $url = $this->api_domain . $path . '?access_token=' . $access_token;
     if ($fields != null) {
         foreach ($fields as $key => $value) {
             $url = $url . '&' . $key . '=' . $value;
         }
     }
     $result = Utils::getURLContents($url);
     return json_decode($result);
 }
开发者ID:dgw,项目名称:ThinkUp,代码行数:18,代码来源:class.YouTubeAnalyticsAPIAccessor.php

示例6: getFlickrPhotoSource

    public function getFlickrPhotoSource($u) {
        if ($this->api_key != '') {
            $this->logger->logInfo("Flickr API key set", __METHOD__.','.__LINE__);
            $photo_short_id = substr($u, strlen('http://flic.kr/p/'));
            $photo_id = $this->base_decode($photo_short_id);
            $params = array('method'=>$this->method, 'photo_id'=>$photo_id, 'api_key'=>$this->api_key,
            'format'=>$this->format, );

            $encoded_params = array();

            foreach ($params as $k=>$v) {
                $encoded_params[] = urlencode($k).'='.urlencode($v);
            }

            $api_call = $this->api_url.implode('&', $encoded_params);

            $this->logger->logInfo("Flickr API call: $api_call", __METHOD__.','.__LINE__);

            $resp = Utils::getURLContents($api_call);
            if ($resp != false) {
                $fphoto = unserialize($resp);

                if ($fphoto['stat'] == 'ok') {
                    $src = '';
                    foreach ($fphoto['sizes']['size'] as $s) {
                        if ($s['label'] == 'Small') {
                            $src = $s['source'];
                        }
                    }
                    return array("expanded_url"=>$src, "error"=>'');
                } else {
                    $this->logger->logInfo("ERROR: '".$fphoto['message']."'", __METHOD__.','.__LINE__);
                    return array("expanded_url"=>'', "error"=>$fphoto['message']);
                }

            } else {
                $this->logger->logInfo("ERROR: No response from Flickr API", __METHOD__.','.__LINE__);
                return array("expanded_url"=>'', "error"=>'No response from Flickr API');
            }
        } else {
            $this->logger->logInfo("ERROR: Flickr API key is not set", __METHOD__.','.__LINE__);
            return array("expanded_url"=>'', "error"=>'');
        }
    }
开发者ID:rkabir,项目名称:ThinkUp,代码行数:44,代码来源:class.FlickrAPIAccessor.php

示例7: processTweetURLs

 /**
  * If link is an image (Twitpic/Twitgoo/Yfrog/Flickr for now), insert direct path to thumb as expanded url.
  * @TODO (from TwitterCrawler version): Abstract out this image thumbnail link expansion into a plugin
  * modeled after the Flickr Thumbnails plugin
  * @param Logger $logger
  * @param str $tweet
  * @param Array $urls
  */
 public static function processTweetURLs($logger, $tweet, $urls = null) {
     $link_dao = DAOFactory::getDAO('LinkDAO');
     if (!$urls) {
         $urls = Post::extractURLs($tweet['post_text']);
     }
     foreach ($urls as $u) {
         $logger->logInfo("processing url: $u", __METHOD__.','.__LINE__);
         $is_image = 0;
         $title = '';
         $eurl = '';
         if (substr($u, 0, strlen('http://twitpic.com/')) == 'http://twitpic.com/') {
             $eurl = 'http://twitpic.com/show/thumb/'.substr($u, strlen('http://twitpic.com/'));
             $is_image = 1;
         } elseif (substr($u, 0, strlen('http://yfrog.com/')) == 'http://yfrog.com/') {
             $eurl = $u.'.th.jpg';
             $is_image = 1;
         } elseif (substr($u, 0, strlen('http://twitgoo.com/')) == 'http://twitgoo.com/') {
             $eurl = 'http://twitgoo.com/show/thumb/'.substr($u, strlen('http://twitgoo.com/'));
             $is_image = 1;
         } elseif (substr($u, 0, strlen('http://picplz.com/')) == 'http://picplz.com/') {
             $eurl = $u.'/thumb/';
             $is_image = 1;
         } elseif (substr($u, 0, strlen('http://flic.kr/')) == 'http://flic.kr/') {
             $is_image = 1;
         } elseif (substr($u, 0, strlen('http://instagr.am/')) == 'http://instagr.am/') {
             $logger->logInfo("processing instagram url: $u", __METHOD__.','.__LINE__);
             $html = (string) Utils::getURLContents($u);
             list($eurl, $is_image) = self::extractInstagramImageURL($logger, $html);
         }
         if ($link_dao->insert($u, $eurl, $title, $tweet['post_id'], 'twitter', $is_image)) {
             $logger->logSuccess("Inserted ".$u." (".$eurl.", ".$is_image."), into links table",
             __METHOD__.','.__LINE__);
         } else {
             $logger->logError("Did NOT insert ".$u." (".$eurl.") into links table", __METHOD__.','.__LINE__);
         }
     }
 }
开发者ID:rgoncalves,项目名称:ThinkUp,代码行数:45,代码来源:class.URLProcessor.php

示例8: getDataForReverseGeoencoding

 /**
  * Retrieve data for Reverse Geoencoding
  * @var float $latitude
  * @var float $longitude
  * @return string $filecontents
  */
 public function getDataForReverseGeoencoding($latlng) {
     $latlng = explode(' ', $latlng, 2);
     $url = "http://maps.google.com/maps/api/geocode/json?latlng=$latlng[0],$latlng[1]&sensor=true";
     $filecontents=Utils::getURLContents($url);
     return $filecontents;
 }
开发者ID:rgoncalves,项目名称:ThinkUp,代码行数:12,代码来源:class.GeoEncoderCrawler.php

示例9: rawApiRequest

 /**
  * Make a Graph API request with the absolute URL. This URL needs to
  * include the https://graph.facebook.com/ at the start and the
  * access token at the end as well as everything in between. It is
  * literally the raw URL that needs to be passed in.
  *
  * @param str $path
  * @return array Decoded JSON response
  */
 public static function rawApiRequest($path) {
     $result = Utils::getURLContents($path);
     return json_decode($result);
 }
开发者ID:rgoncalves,项目名称:ThinkUp,代码行数:13,代码来源:class.FacebookGraphAPIAccessor.php

示例10: apiRequest

 private function apiRequest($method, $encoded_params)
 {
     $api_call = $this->api_url . $method . implode('&', $encoded_params);
     //Don't log this for privacy reasons; it will output the API key to the log
     //$this->logger->logInfo("Bit.ly API call: $api_call", __METHOD__.','.__LINE__);
     $resp = Utils::getURLContents($api_call);
     //$this->logger->logInfo("Bit.ly API call response: ".$resp, __METHOD__.','.__LINE__);
     if ($resp != false) {
         $bit_link = json_decode($resp, true);
         return $bit_link;
     } else {
         $this->logger->logInfo("ERROR: No response from Bit.ly API", __METHOD__ . ',' . __LINE__);
         return array("expanded_url" => '', "title" => '', "clicks" => '', "error" => 'No response from Bit.ly API');
     }
 }
开发者ID:pepeleproso,项目名称:ThinkUp,代码行数:15,代码来源:class.BitlyAPIAccessor.php

示例11: fetchURLData

 /**
  * Abstraction for pulling data from a file or url
  * @throws exception
  * @param str $url
  * @return request response data
  */
 private function fetchURLData($url)
 {
     if (strpos($url, "/") == 0 || strpos($url, ".") == 0) {
         // we are a file path, so use file_get_contents
         $contents = file_get_contents($url);
     } else {
         // else we are a url, so use our Util::getURLContents
         $contents = Utils::getURLContents(URLProcessor::getFinalURL($url));
     }
     if (is_null($contents)) {
         $contents = false;
     }
     return $contents;
 }
开发者ID:ngugijames,项目名称:ThinkUp,代码行数:20,代码来源:class.AppUpgraderClient.php

示例12: getDataForReverseGeoencoding

 /**
  * Retrieve data for reverse geoencoding
  * @var float $latitude
  * @var float $longitude
  * @return string $filecontents
  */
 public function getDataForReverseGeoencoding($latlng)
 {
     $latlng = explode(' ', $latlng, 2);
     if (isset($latlng[0]) && isset($latlng[1])) {
         $url = "http://maps.google.com/maps/api/geocode/json?latlng={$latlng['0']},{$latlng['1']}&sensor=true";
         $filecontents = Utils::getURLContents($url);
         return $filecontents;
     } else {
         return '';
     }
 }
开发者ID:JWFoxJr,项目名称:ThinkUp,代码行数:17,代码来源:class.GeoEncoderCrawler.php

示例13:

<?php

require_once 'init.php';
//$adr = urldecode("Centrum plaza Gurgaon");
$url = "https://maps.googleapis.com/maps/api/geocode/json?address=Centrum+plaza+Gurgaon&sensor=false";
//$url = "https://www.google.co.in/?gfe_rd=cr&ei=S765VaSrGoLC8gelhquwDw&gws_rd=ssl#q=curl";
$result = Utils::getURLContents($url);
print_r($result);
开发者ID:prabhatse,项目名称:olx_hack,代码行数:8,代码来源:location.php

示例14: basicApiRequest

 /**
  * Make an API request to the URL passed in, no processing of the URL is done
  * @param str $path
  * @return array Decoded JSON response
  */
 public function basicApiRequest($url)
 {
     $result = Utils::getURLContents($url);
     return json_decode($result);
 }
开发者ID:dgw,项目名称:ThinkUp,代码行数:10,代码来源:class.YouTubeAPIV2Accessor.php

示例15: expandInstagramImageURLs

 /**
  * Save direct link to Instagr.am images in data store.
  */
 public function expandInstagramImageURLs()
 {
     $logger = Logger::getInstance();
     $link_dao = DAOFactory::getDAO('LinkDAO');
     $insta_links_to_expand = $link_dao->getLinksToExpandByURL('http://instagr.am/');
     if (count($insta_links_to_expand) > 0) {
         $logger->logUserInfo(count($insta_links_to_expand) . " Instagr.am links to expand.", __METHOD__ . ',' . __LINE__);
     } else {
         $logger->logUserInfo("There are no Instagr.am thumbnails to expand.", __METHOD__ . ',' . __LINE__);
     }
     $total_thumbnails = 0;
     $total_errors = 0;
     $eurl = '';
     foreach ($insta_links_to_expand as $il) {
         $html = (string) Utils::getURLContents($il);
         if ($html) {
             preg_match('/<meta property="og:image" content="[^"]+"\\/>/i', $html, $matches);
             if (isset($matches[0])) {
                 $eurl = substr($matches[0], 35, -3);
                 $logger->logDebug("Got instagr.am expanded URL: {$eurl}", __METHOD__ . ',' . __LINE__);
             }
             if ($eurl != '') {
                 $link_dao->saveExpandedUrl($il, $eurl, '', 1);
                 $total_thumbnails = $total_thumbnails + 1;
             } else {
                 $total_errors = $total_errors + 1;
             }
         }
     }
     $logger->logUserSuccess($total_thumbnails . " Instagr.am thumbnails expanded (" . $total_errors . " errors)", __METHOD__ . ',' . __LINE__);
 }
开发者ID:raycornelius,项目名称:ThinkUp,代码行数:34,代码来源:class.ExpandURLsPlugin.php


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