1
我試圖製作一個應用程序,它將遍歷我自己的帖子,並獲得收藏帖子的用戶列表。之後我希望應用程序遵循這些用戶中的每一個,如果我沒有遵循這些用戶的話。我爲此使用Ruby。Ruby twitter gem。如何讓喜歡我的帖子的人
這是我現在的代碼:
@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
有什麼建議?