Help for this page

Select Code to Download


  1. or download this
    my $response = $ua->...;
    print($response->request()->uri(), "\n");
    
  2. or download this
    my $response = $ua->...;
    while ($response) {
       print($response->request()->uri(), "\n");
       $response = $response->previous();
    }