How after this code change user_ids dynamically?
TweetStream::Client.new.follow(14252, 53235) do |status|
puts "#{status.text}"
end
For example I start TweetStream with user_ids from DB, but after that I have a new one user_id. How add a new user_id to the follow array?
Thank you!
before you need to make your code more flexible
next
and do something like this:
but you will need to use Eventmachine or something else for this code