根据Ars Technica教程,“流媒体API可以让用户轻松检测到新的关注者。要检测关注事件对象,请查找”事件“键并检查其是否包含”跟随“字符串作为价值。“
tweetstream gem应该公开API中的所有方法。但是我无法弄清楚,如何达到那些关注请求!
有什么想法吗?
答案 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:)