我的问题很简单,使用URL
缩短ruby on Rails
的最佳解决方案是什么?谢谢
答案 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/"