Given a t.co link, how can I find see where the link resolves? For example, if I have t.co/foo, I want a function or process that returns domain.com/bar.

link|improve this question

feedback

5 Answers

up vote 9 down vote accepted

I'll use this to promote my own AppEngine-powered service, ExpandURL. It has a nice API that will expand among others t.co URLs. :)

For example, given an example URL http://t.co/gLP0Ucg, the relevant API call would be http://expandurl.appspot.com/expand?url=http%3A%2F%2Ft.co%2FgLP0Ucg. Result:

{
    "status": "OK",
    "end_url": "http:\/\/www.notquitewrong.com\/rosscottinc\/2011\/06\/27\/the-system-506-office-forecast\/",
    "redirects": 1,
    "urls": ["http:\/\/t.co\/gLP0Ucg", "http:\/\/www.notquitewrong.com\/rosscottinc\/2011\/06\/27\/the-system-506-office-forecast\/"],
    "start_url": "http:\/\/t.co\/gLP0Ucg"
}
link|improve this answer
1  
It's not often that a plug is relevant, but it certainly was here :) – Adrian Petrescu Jun 28 '11 at 1:54
Playing with this now. Thanks! – hookedonwinter Jun 28 '11 at 2:07
You win! thanks! great little api. Here's it in action, expanding image urls (and shortened image urls) into images: denveroffthewagon.com/colorado-cocktail-project – hookedonwinter Jun 28 '11 at 2:24
dawp. 503 - This Google App Engine application is temporarily over its serving quota. Please try again later. – CAD bloke Sep 13 '11 at 4:07
Fantastic api @harpyon - Thank you very much! Your api was the best among the ones that I tried! Keep up! – Erkan Y. Feb 10 at 16:16
feedback

If you want to do it from the command line, curl's verbose option comes to the rescue:

curl -v <url>

gives you the HTTP reply. For t.co it seems to give you an HTTP/301 reply (permanently moved). Then, there's a Location field, which points to the URL behind the shortened one.

link|improve this answer
1  
also curl -I <url> will give you the header information – minaz Feb 20 at 17:34
feedback

You could give unshorten.me a go. It has an API.

JSON:

http://api.unshort.me/?r=http://theshorturl.ly/28292&t=json

Would give you:

{
   "requestedURL":"http://theshorturl.ly/28292",
   "success":"true",
   "resolvedURL":"http://thefullurl.com/a-webiste/what-a-long-url"
}
link|improve this answer
unshorten.me is shutting down their API, victim of their own success. (Can't afford the hosting cost of 6 million API calls per day) – Shewfig Mar 20 at 0:35
feedback

Try LongURL. That supports expanding a wide variety of link shorteners, including t.co.

link|improve this answer
feedback

I would stay away from external APIs over which you have no control. That will simply introduce a dependency into your application that is a potential point of failure, and could cost you money to use.

CURL can do this quite nicely. Here's how I did it in PHP:

function unshorten_url($url) {
  $ch = curl_init($url);
  curl_setopt_array($ch, array(
    CURLOPT_FOLLOWLOCATION => TRUE,  // the magic sauce
    CURLOPT_RETURNTRANSFER => TRUE,
    CURLOPT_SSL_VERIFYHOST => FALSE, // suppress certain SSL errors
    CURLOPT_SSL_VERIFYPEER => FALSE, 
  ));
  curl_exec($ch); 
  return curl_getinfo($ch, CURLINFO_EFFECTIVE_URL);
}

I'm sure this could be adapted to other languages or even scripted with the curl command on UNIXy systems.

http://jonathonhill.net/2012-05-18/unshorten-urls-with-php-and-curl/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.