Skip to content

Instantly share code, notes, and snippets.

@masayuki5160
Created April 21, 2014 00:35
Show Gist options
  • Save masayuki5160/11129064 to your computer and use it in GitHub Desktop.
Save masayuki5160/11129064 to your computer and use it in GitHub Desktop.
Perlでhttpアクセスしてみる.
use strict;
use warnings;
use LWP::UserAgent;
my $url = "http://www.hoge.jp/";
my $ua = LWP::UserAgent->new;
my $res = $ua->get($url);
my $content;
if($res->is_success){
$content = $res->content;
print $content;
}else{
die($res->status_line);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment