在Perl中发出HTTP GET请求的最简单方法是什么?

时间:2008-09-25 17:55:57

标签: perl web-services http

我有一些用PHP编写的代码,用于使用我们简单的Web服务,我也想在Perl中为可能更喜欢该语言的用户提供这些代码。制作HTTP请求的最简单方法是什么?在PHP中,我可以使用file_get_contents()在一行中完成。

这是我想要移植到Perl的整个代码:

/**
 * Makes a remote call to the our API, and returns the response
 * @param cmd {string} - command string ID
 * @param argsArray {array} - associative array of argument names and argument values
 * @return {array} - array of responses
 */
function callAPI( $cmd, $argsArray=array() )
{
   $apikey="MY_API_KEY";
   $secret="MY_SECRET";
   $apiurl="https://foobar.com/api";

   // timestamp this API was submitted (for security reasons)
   $epoch_time=time();

   //--- assemble argument array into string
   $query = "cmd=" .$cmd;
   foreach ($argsArray as $argName => $argValue) {
       $query .= "&" . $argName . "=" . urlencode($argValue);
   }
   $query .= "&key=". $apikey . "&time=" . $epoch_time;

   //--- make md5 hash of the query + secret string
   $md5 = md5($query . $secret);
   $url = $apiurl . "?" . $query . "&md5=" . $md5;

   //--- make simple HTTP GET request, put the server response into $response
   $response = file_get_contents($url);

   //--- convert "|" (pipe) delimited string to array
   $responseArray = explode("|", $response);
   return $responseArray;
}

8 个答案:

答案 0 :(得分:63)

LWP ::简单:

use LWP::Simple;
$contents = get("http://YOUR_URL_HERE");

答案 1 :(得分:15)

LWP :: Simple具有您正在寻找的功能。

use LWP::Simple;
$content = get($url);
die "Can't GET $url" if (! defined $content);

答案 2 :(得分:6)

看看LWP::Simple。 对于更多参与的查询,甚至有a book about it

答案 3 :(得分:4)

我会使用LWP::Simple模块。

答案 4 :(得分:2)

Mojo::UserAgent也是一个不错的选择!

  use Mojo::UserAgent;
  my $ua = Mojo::UserAgent->new;

  # Say hello to the Unicode snowman with "Do Not Track" header
  say $ua->get('www.☃.net?hello=there' => {DNT => 1})->res->body;

  # Form POST with exception handling
  my $tx = $ua->post('https://metacpan.org/search' => form => {q => 'mojo'});
  if (my $res = $tx->success) { say $res->body }
  else {
    my ($err, $code) = $tx->error;
    say $code ? "$code response: $err" : "Connection error: $err";
  }

  # Quick JSON API request with Basic authentication
  say $ua->get('https://sri:s3cret@example.com/search.json?q=perl')
    ->res->json('/results/0/title');

  # Extract data from HTML and XML resources
  say $ua->get('www.perl.org')->res->dom->html->head->title->text;`

样本直接来自CPAN页面。当我无法让LWP :: Simple在我的机器上工作时,我使用了这个。

答案 5 :(得分:1)

尝试HTTP::Request模块。 此类的实例通常传递给LWP :: UserAgent对象的request()方法。

答案 6 :(得分:0)

如果它在UNIX中并且没有安装LWP :: Simple,则可以尝试

my $content = `GET "http://trackMyPhones.com/"`;

答案 7 :(得分:0)

我认为Srihari可能会引用的是Wget,但我实际推荐的(再次,在没有LSP :: Simple的* nix上)将使用cURL

$ my $content = `curl -s "http://google.com"`;
<HTML><HEAD><meta http-equiv="content-type" content="text/html;charset=utf-8">
<TITLE>301 Moved</TITLE></HEAD><BODY>
<H1>301 Moved</H1>
The document has moved
<A HREF="http://www.google.com/">here</A>.
</BODY></HTML>

-s标志告诉curl是静默的。否则,每次都会在stderr上获得curl的进度条输出。