in reply to WWW::Mechanize and 302 redirect
As explained in the RFC, it is incorrect for a browser to allow a POST request to be redirected by a 302 server response. Most browsers do it, though, and that's why WWW::Mechanize explicitely allows it via
although the underlying LWP::UserAgent strictly complies with the standard.push( @{$self->requests_redirectable}, 'POST' );
|
|---|