我试图创建一个应用程序,它会遍历我自己的帖子,并获得一个收藏帖子的用户列表。之后我希望应用程序跟踪每个用户,如果我还没有关注它们。我正在使用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
有什么建议吗?
答案 0 :(得分:1)
该信息不会通过时间轴集合或the endpoint representing a single tweet在Twitter API中公开。这就是为什么在gem API周围提供可用界面的twitter gem无法为您提供所需的内容。
第三方网站(例如Favstar)会显示该信息,但据我所知,他们自己的API不会以任何可管理的方式公开相关用户。