-4

我必须获取网页中的所有链接,但所有链接都是使用 post 方法加载的。

请提供任何解决方案以获取所有链接。

4

1 回答 1

1

使用LWP

use warnings;
use strict;
use LWP::UserAgent;
my $linkid = "link identifier";

my $browser = LWP::UserAgent->new;
my $response = $browser->post(
  'http://sitewithlinks/linkget.php',
  [
    'linkid'  => $linkid,
    'hidden' => 'somethinghidden'
  ],
);
die "Error: ", $response->status_line
 unless $response->is_success;

print "GOT THIS: $response->content";
于 2012-07-26T07:40:07.900 回答