use LWP::Simple;
use HTML::LinkExtor;
use Data::Dumper;
#my $url = shift @ARGV;
my $content = get('example.com?GET=whateverIwant');
my $parser = HTML::LinkExtor->new(); #create LinkExtor object with no callbacks
$parser->parse($content); #parse content
現在如果我要發送POST和COOKIE信息以及與HTTP標頭我怎麼能配置與GET功能可按?還是必須自定義我自己的方法?如何使用Perl的LWP :: Simple發送cookies?
我的主要興趣是餅乾!然後發佈!
但是什麼是set_cookie的參數!文檔指的是$版本,但沒有提供任何細節! http://search.cpan.org/~gaas/HTTP-Cookies-6.01/lib/HTTP/Cookies.pm#METHODS – Chloe 2013-01-14 19:25:44
@Chloe,它期望你熟悉的cookie規範。參見[RFC 2965](https://www.ietf.org/rfc/rfc2965)。 – cjm 2013-01-14 23:56:57