Tagged Questions
5
votes
1answer
3k views
How can I accept gzip-compressed content using LWP::UserAgent?
I am fetching some pages over the Web using Perl's LWP::UserAgent and would like to be as polite as possible. By default, LWP::UserAgent does not seamlessly handle compressed content via gzip. Is ...
3
votes
4answers
1k views
Why does Perl's LWP gives me a different encoding than the original website?
Lets say i have this code:
use strict;
use LWP qw ( get );
my $content = get ( "http://www.msn.co.il" );
print STDERR $content;
The error log shows something like ...
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 ...