Using Ruby, how do I convert the short URLs (tinyURL, bitly etc) to the corresponding long URLs?
|
|
I don't use Ruby but the general idea is to send an HTTP HEAD request to the server which in turn will return a 301 response (Moved Permanently) with the
RESPONSE:
This is much faster than opening the actual URL and you don't really want to fetch the redirected URL. It also plays nice with the tinyurl service. Look into any HTTP or curl APIs within ruby. It should be fairly easy. |
||||||
|
|
|
You can use the httpclient rubygem to get the headers
|
||
|
|
|
|
There is a great wrapper for the bitly API in Python available here: http://code.google.com/p/python-bitly/ So there must be something similar for Ruby. |
||
|
|
