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.
|
feedback
|
|
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
| |||||||||||||
feedback
|
|
If you want to do it from the command line, curl's verbose option comes to the rescue:
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. | |||||
feedback
|
|
You could give unshorten.me a go. It has an API. JSON:
Would give you:
| ||||
feedback
|
|
Try LongURL. That supports expanding a wide variety of link shorteners, including | |||
|
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:
I'm sure this could be adapted to other languages or even scripted with the http://jonathonhill.net/2012-05-18/unshorten-urls-with-php-and-curl/ | |||
|
feedback
|