Help for this page

Select Code to Download


  1. or download this
    my $ua = LWP::UserAgent->new(
      'requests_redirectable' => [],
      'max_redirect' => 0,
    );
    
  2. or download this
        if ($response->redirects >= $self->{max_redirect}) {
            $response->header("Client-Warning" =>
    ...
            );
           return $response;
        }