in reply to Downloading a web page over HTTPS?
LWP::Simple uses LWP::UserAgent. LWP::UserAgent normally follows redirects. It won't follow redirects received from POST responses by default, however. Consult the docs for LWP::UserAgent to add POST to the list of methods for which redirects are allowed. (You won't be able to use LWP::Simple if this is the problem.)
|
|---|