Can't retrieve content of a webpage with perl's LWP agent?

The LWP::UserAgent docs indicate that the request method on the user agent will follow redirects automatically. It's unclear from this documentation if get uses the same logic.

The LWP::UserAgent docs indicate that the request method on the user agent will follow redirects automatically. It's unclear from this documentation if get uses the same logic. You could use the request method by creating an HTTP::Request object.

This example uses the request method: perl -MData::Dumper -MHTTP::Request -MLWP -e ' $request=HTTP::Request->new(GET => "http://www.google.com"); $ua=LWP::UserAgent->new; print Dumper $ua->request($request).

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions