如何从短网址获取长网址?
使用 Ruby,如何将短 URL(tinyURL、bitly 等)转换为相应的长 URL?
Using Ruby, how do I convert the short URLs (tinyURL, bitly etc) to the corresponding long URLs?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我不使用 Ruby,但总体思路是向服务器发送 HTTP HEAD 请求,服务器将返回 301 响应(永久移动),其中包含包含 URI 的
Location
标头。响应:
这比打开实际 URL 快得多,而且您并不真的想获取重定向的 URL。 它也与tinyurl 服务配合得很好。
查看 ruby 中的任何 HTTP 或curl API。 这应该相当容易。
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
Location
header which contains the URI.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.
您可以使用 httpclient rubygem 来获取标头
You can use the httpclient rubygem to get the headers
这里有一个很棒的 Python 中的 bitly API 包装器:
http://code.google.com/p/python-bitly/
所以Ruby 肯定也有类似的东西。
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.