我在 perl 中使用 WWW::Mechanize 进行网站抓取应用程序。
当我要通过 WWW::Mechanize 登录特定站点时,我遇到了一些困难。我已经浏览了一些 WWW::Mechanize 的例子。但我找不到我的问题。我在我的代码下面提到了。
#!/usr/bin/perl -w
use strict;
use WWW::Mechanize;
use HTTP::Cookies;
use Crypt::SSLeay;
my $agent = WWW::Mechanize->new(noproxy => 0);
$agent->cookie_jar(HTTP::Cookies->new());
$agent->agent('Mozilla/5.0');
$agent->proxy(['https', 'http', 'ftp'], 'http://proxy.rcapl.com:3128');
$agent->get("http://www.facebook.com");
my $re=$agent->submit_form(
form_number => 1,
fields => {
Email => 'xyz@gmail.com',
Passwd =>'xyz'
}
);
print $re->content();
当我运行代码时,它说:
发布https://www.facebook.com/login.php?login_attempt=1时出错:未在 ./test.pl 第 11 行实现
任何人都可以告诉代码出了什么问题。我需要设置facebook发送登录的所有参数吗?