Twitter Bot喜欢使用ruby的一些推文

时间:2019-01-16 21:20:27

标签: ruby api twitter

我是Ruby初学者,目前正在使用Twitter API。

到目前为止,我已经学会了如何使用带有

的twitter bot进行鸣叫和查找鸣叫

例如Ruby

def follow_hello(client)
    client.search("#Hello_World", result_type: "recent").take(20).map do |tweet|
      client.follow(tweet.user)
    end
end

但是我的问题是我如何才能喜欢#Hello_World的所有20条推文?

我尝试过

client.search('#Hello_World', result_type: "recent").take(25).each do |like|

但是它不起作用。谢谢

1 个答案:

答案 0 :(得分:0)

似乎可以通过传递一系列推文来进行“ favorite”呼叫。

尽管我目前无法对其进行测试,但类似这样的应该可以工作:

var tweets = client.search("#Hello_World", result_type: "recent").take(20)

client.favorite(tweets)