标签: perl
我该怎么做?
我还想使用代理。我该怎么做?
答案 0 :(得分:5)
use WWW::Mechanize; my $mech = WWW::Mechanize->new(); $mech->get("http://foo.com/bar"); my $content = $mech->res()->content();
有关代理,请参阅the Mechanize FAQ。