Ruby twitter gem。如何吸引喜欢我的帖子的人

时间:2015-05-06 15:33:39

标签: ruby twitter gem posts favorite

我试图创建一个应用程序,它会遍历我自己的帖子,并获得一个收藏帖子的用户列表。之后我希望应用程序跟踪每个用户,如果我还没有关注它们。我正在使用Ruby。

这是我现在的代码:

@client = Twitter::REST::Client.new(config)
OpenSSL::SSL::VERIFY_PEER = OpenSSL::SSL::VERIFY_NONE
user = @client.user()
tweets = @client.user_timeline(user).take(20)
num_of_tweets = tweets.length
puts "tweets found: #{tweets.length}"
tweets.each do |item|
    puts "#{ item}" #iterating through my posts here
end

有什么建议吗?

1 个答案:

答案 0 :(得分:1)

该信息不会通过时间轴集合或the endpoint representing a single tweet在Twitter API中公开。这就是为什么在gem API周围提供可用界面的twitter gem无法为您提供所需的内容。

第三方网站(例如Favstar)会显示该信息,但据我所知,他们自己的API不会以任何可管理的方式公开相关用户。