1

新手问题再次...我已经有以下代码用于使用 Bitly 缩短链接。

def bitly_links(url)                                     
 bitly ||= begin                                            
  Bitly.use_api_version_3                                     
  Bitly.new('username', 'key')
  bitly.shorten(url)
 end
end

这次我想做的是在评论创建后搜索并缩短评论中的所有链接。这类似于这篇博客文章Using bitly in rails 3,但发现它有点混乱,因为使用for循环而不是do ... end块。另外,我注意到该方法甚至没有被调用。

网站上的示例评论:

嘿,你应该看看这个帖子http://vox4life.blogspot.com/2012/11/4Life-2012-Growth-is-strong.html和这个.. http://vox4life.blogspot.com/2012/ 11/dengue-outbreak-peoples-journal.html还有这个 http://vox4life.blogspot.com/2012/02/transfer-factor-immunotherapy.html

会变成:

嘿,你应该看看这个帖子http://bit.ly/ZHdLTa和这个.. http://bit.ly/TZ6Nrj还有这个http://bit.ly/ZrnWMj

先感谢您。

与此类似的问题,但在 Java 中

4

1 回答 1

1

如果您不想要 for 循环,我想您可以修改该方法。我认为正文是带有 URL 的整个文本。

def bitly_body(body)
    matches = body.scan(/((http|https):\/\/(\&|\=|\_|\?|\w|\.|\d|\/|-)+(:\d+(\&|\=|\?|\w|\.|\d|\/|-)+)?)/)
    Bitly.use_api_version_3

    bitly = Bitly.new("thealey", "bitly_api_key")

    (0..matches.length).each do |i|    # <-- changed here.
      if matches[i].to_s.size > 0
        logger.info("url " + matches[i][0])
        if matches[i][0].include? "bit.ly"
          logger.info("already a bitly url " + matches[i][0])
        else
          u = bitly.shorten(matches[i][0])
          body[matches[i][0]] = u.short_url
        end
      end
    end
    body
end
于 2012-11-14T09:08:06.590 回答