我正在尝试通过 Perl 模块 WWW::Mechanize 搜索 Yellowpages.com。
$mech->get( "http://www.yellowpages.com" );
$mech->form_name( "standard-searchform" );
$mech->field( "search-terms, "schneider" );
$mech->field( "search-location", "CA" );
$mech->submit();
我还尝试了 $mech->submit_form( ... ) 与按钮值/类型,但我一直收到以下消息:
Error POSTing http://www.yellowpages.com/real_deals: Internal Server Error at /usr/lib/cgi-bin/index.pl line 39
第 39 行是
$mech->submit();
yp.com 是否将 Mechanize 转发到该站点?我怎样才能避免这种情况?