制作缩短网址的最佳方法是什么?

时间:2013-11-20 07:34:59

标签: ruby-on-rails

我的问题很简单,使用URL缩短ruby on Rails的最佳解决方案是什么?谢谢

2 个答案:

答案 0 :(得分:2)

使用 gem bitly 它的优点并且易于实现http://rubygems.org/gems/bitly

答案 1 :(得分:1)

我过去曾使用https://github.com/zigotto/googl。对它而言,真正的锦上添花就是你得到的分析支持。

使用它非常简单:

url = Googl.shorten('http://www.zigotto.com')

url.short_url
=> "http://goo.gl/ump4S"

url.long_url
=> "http://www.zigotto.com/"

url.qr_code
=> "http://goo.gl/ump4S.qr"

url.info
=> "http://goo.gl/ump4S.info"

要恢复操作,请使用:

url = Googl.expand('http://goo.gl/ump4S')

url.long_url
=> "http://www.zigotto.com/"