Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re: Proper way to get redirected url from LWP::UserAgent response?

by cormanaz (Deacon)
on Jul 28, 2021 at 23:59 UTC ( [id://11135454]=note: print w/replies, xml ) Need Help??


in reply to Proper way to get redirected url from LWP::UserAgent response?

I think I worked this out. I found in some WWW::Mechanize docs that the proper way to query the redirect is using $response->redirects(). It seems that t.co does not return this header (anyone know why?) so you have to get it with the refresh parameter. But all the other shorteners (at least a slew of them I tested) do. So this code should work for most purposes.
use strict; use feature ':5.10'; use LWP::UserAgent; our $ua = LWP::UserAgent->new; $ua->max_redirect(10); my @links = qw( https://tinyurl.com/69rmnakp https://t.co/NqACDPYdD9 https://bit.ly/3eikm4z http://apne.ws/HGpbLTW ); foreach my $link (@links) { say "$link > ".expand($link); } sub expand { my ($short) = @_; my $long; my $response = $ua->get($short); if ($response->is_success) { my @redirects = $response->redirects(); if (@redirects) { $long = $redirects[0]->header('location'); } elsif ($response->header('refresh')) { $long = $response->header('refresh'); $long =~ s/0\;URL\=//; } return $long; } else { return $short; } }

Replies are listed 'Best First'.
Re^2: Proper way to get redirected url from LWP::UserAgent response?
by Corion (Patriarch) on Jul 29, 2021 at 06:06 UTC

    This is mostly because HTTP::Response / HTTP::Message only concern themselves with HTTP redirect responses (3xx codes). A redirect using the refresh header could be an interesting addition, but it is distinct as it is (usually) served with a 2xx code and not with a 3xx code.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11135454]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (4)
As of 2024-04-19 12:04 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found