in reply to Content Length
in return i get:use strict; use LWP::UserAgent; my $request = new HTTP::Request('GET'=>"http://www.google.com" ); my $ua = new LWP::UserAgent; my $response = $ua->request($request) || return "ERROR\t$!"; print $response->content_length;
2927
|
|---|