in reply to How to get real address with LWP and redirects?
To see the final uri:
my $response = $ua->...; print($response->request()->uri(), "\n");
Or to see all the redirections:
my $response = $ua->...; while ($response) { print($response->request()->uri(), "\n"); $response = $response->previous(); }
|
|---|