我在登录asp页面时遇到了一些问题。
这是我的代码:
#!/usr/bin/perl -w
use strict;
use warnings;
use WWW::Mechanize;
use LWP::Debug qw(+);
my $mech = WWW::Mechanize->new;
$mech->agent('User-Agent=Mozilla/4.0');
$mech->get( 'http://site.net/index.asp' );
$mech->submit_form(
form_name => 'form',
fields => {
xpto => '123'
}
);
my $app_content = $mech->content();
print "$app_content\n";
这就是我从终端得到的:
<html>
<head>
<title>Anti Bot</title>
</head>
<body>
<h1 style="color:red;">Bots are not allowed here</h1>
</body>
</html>