in reply to webpage login
You might also find that the POST request gets redirected, in which case the requests_redirectable should help.my $ua = LWP::UserAgent->new(keep_alive => 1, requests_redirectable => + [qw/GET POST HEAD/]); my %args = ( foo => "bar", ); my $response = $ua->post($form_url, \%args);
|
|---|