Tagged Questions

5
votes
3answers
1k views

How do I use Perl's LWP to log in to a web application?

I would like to write a script to login to a web application and then move to other parts of the application: use HTTP::Request::Common qw(POST); use LWP::UserAgent; use Data::Dumper; $ua = ...
3
votes
2answers
923 views

Transparently Handling GZip Encoded content with WWW::Mechanize

I am using WWW::Mechanize and currently handling HTTP responses with the 'Content-Encoding: gzip' header in my code by first checking the response headers and then using IO::Uncompress::Gunzip to get ...
0
votes
1answer
133 views

Suggestion wanted: web-spider with Perl

The spider should: Login via post a log in form Maintain login stat by cookies Follow random link in the homepage The purpose of the spider is to keep a new website busy, simulating that many ...