44

簡単な Web サービスを使用するために PHP で記述したコードがいくつかあります。Perl 言語を好むユーザーのために、これを Perl でも提供したいと考えています。それを行うための HTTP リクエストを作成する最も簡単な方法は何ですか? PHP では、1 行で実行できます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;
}
4

8 に答える 8

77

LWP :: Simple:

use LWP::Simple;
$contents = get("http://YOUR_URL_HERE");
于 2008-09-25T17:59:43.163 に答える
19

LWP::Simpleはあなたが探している機能を持っています。

use LWP::Simple;
$content = get($url);
die "Can't GET $url" if (! defined $content);
于 2008-09-25T18:02:39.677 に答える
6

LWP::Simpleを見てください。より複雑なクエリについては、それについての本さえあります。

于 2008-09-25T17:59:29.530 に答える
6

LWP::Simpleモジュールを使用します。

于 2008-09-25T17:59:52.260 に答える
3

HTTP::Requestモジュールを試してください。このクラスのインスタンスは通常、LWP :: UserAgentオブジェクトのrequest()メソッドに渡されます。

于 2008-09-25T18:00:55.470 に答える
3

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 を自分のマシンで動作させることができなかったときに、これを使用しました。

于 2013-09-20T04:23:51.610 に答える
1

Srihari が参照している可能性があるのはWgetだと思いますが、実際には (LWP::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>

フラグは、-scurl にサイレントを指示します。そうしないと、毎回標準エラーにcurlのプログレスバー出力が表示されます。

于 2016-01-29T20:32:01.730 に答える
1

Unix にあり、LWP::Simple がインストールされていない場合は、以下を試すことができます。

my $content = `GET "http://trackMyPhones.com/"`;
于 2015-03-20T09:23:49.850 に答える