如何从短网址获取长网址?

发布于 2024-07-22 07:12:15 字数 52 浏览 6 评论 0原文

使用 Ruby,如何将短 URL(tinyURL、bitly 等)转换为相应的长 URL?

Using Ruby, how do I convert the short URLs (tinyURL, bitly etc) to the corresponding long URLs?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

热鲨 2024-07-29 07:12:15

我不使用 Ruby,但总体思路是向服务器发送 HTTP HEAD 请求,服务器将返回 301 响应(永久移动),其中包含包含 URI 的 Location 标头。

HEAD /5b2su2 HTTP/1.1
Host: tinyurl.com
Accept: */*

响应:

HTTP/1.1 301 Moved Permanently
Location: http://stackoverflow.com
Content-type: text/html
Date: Sat, 23 May 2009 18:58:24 GMT
Server: TinyURL/1.6

这比打开实际 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.

HEAD /5b2su2 HTTP/1.1
Host: tinyurl.com
Accept: */*

RESPONSE:

HTTP/1.1 301 Moved Permanently
Location: http://stackoverflow.com
Content-type: text/html
Date: Sat, 23 May 2009 18:58:24 GMT
Server: TinyURL/1.6

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.

孤独患者 2024-07-29 07:12:15

您可以使用 httpclient ruby​​gem 来获取标头

#!/usr/bin/env ruby

require 'rubygems'
require 'httpclient'

client = HTTPClient.new

result = client.head(ARGV[0])
puts result.header['Location']

You can use the httpclient rubygem to get the headers

#!/usr/bin/env ruby

require 'rubygems'
require 'httpclient'

client = HTTPClient.new

result = client.head(ARGV[0])
puts result.header['Location']
甜点 2024-07-29 07:12:15

这里有一个很棒的 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文