-1
我想獲得解決方案,瞭解如何發佈特定網址和檢索內容。用perl可以嗎?讓它成爲我們搜索某個特定ID的網站,並且我們應該獲得標記爲該ID的相關信息。如何發佈網址並使用perl回顧網站內容
我想獲得解決方案,瞭解如何發佈特定網址和檢索內容。用perl可以嗎?讓它成爲我們搜索某個特定ID的網站,並且我們應該獲得標記爲該ID的相關信息。如何發佈網址並使用perl回顧網站內容
使用此
use LWP::UserAgent;
my $ua = LWP::UserAgent->new;
my $server_endpoint = "";
# set custom HTTP request header fields
my $req = HTTP::Request->new(GET => $server_endpoint);
$req->header('content-type' => 'application/json');
my $resp = $ua->request($req);
if ($resp->is_success) {
my $message = $resp->decoded_content;
print "Received reply: $message\n";
}
else {
print "HTTP GET error code: ", $resp->code, "\n";
print "HTTP GET error message: ", $resp->message, "\n";
}
或者你也可以做到這一點的方法也使用LWP::Simple
use strict;
use warnings;
use LWP::Simple;
my $url = 'http://www.example.com';
my $content = get $url or die "Unable to get $url\n";
print $content;
很難用LWP :: Simple做一個POST。 –
http://search.cpan.org/~gaas/libwww-perl-6.05/lib/LWP .pm – Suic
嘗試我發佈的代碼 – Developer