如何使用Tweetstream Ruby gem获取Twitter跟随请求?

时间:2013-01-22 23:15:23

标签: ruby twitter tweetstream

根据Ars Technica教程,“流媒体API可以让用户轻松检测到新的关注者。要检测关注事件对象,请查找”事件“键并检查其是否包含”跟随“字符串作为价值。“

http://arstechnica.com/information-technology/2010/04/tutorial-use-twitters-new-real-time-stream-api-in-python/2/

tweetstream gem应该公开API中的所有方法。但是我无法弄清楚,如何达到那些关注请求!

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

tweetstream gem相当完整,但有时您需要深入研究源代码来寻找内容:

client.on_event(:follow) do |event|
  p event[:source][:screen_name]
end

https://github.com/intridea/tweetstream/blob/master/lib/tweetstream/client.rb#L375:)