I want to translate bulk numbers of short url's coming streamed from twitter. Rather than accessing each individual request I want to use API's that accept a list of short or tiny URL's and return the original URL's. Are such API's available?
feedback
|
|
Not really an API, but this will give you the URL really fast.
| |||
|
feedback
|
|
99% of all url openers have an API. For example, there's a PEAR package (PHP) called Services_ShortURL that supports:
| ||||
|
feedback
|
|
There are a few web-sites around that are dedicated services to converting shortened URLs back to their original. Two I know of that have APIs are LongURL and Untiny.me. I'm in the middle of writing a java library to use both of these. | |||
|
feedback
|
|
I had written a small script to turn short urls to it's original links. It's based on the http header returned by the short urls. | ||||
|
feedback
|
|
Have a look at bit.ly API or budurl.com API | |||||
feedback
|
|
From Untiny.me's online service, this was useful:
So conceivably a simple Bash script reading each line as a short URL would work:
To test, feed it a single URL with
| |||
feedback
|