-
-
Save ilyabrin/9991327 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'Twitter' #gem install twitter | |
while true | |
begin | |
# Create a read write application from : | |
# https://apps.twitter.com | |
# authenticate it for your account | |
# fill in the following | |
config = { | |
consumer_key: '', | |
consumer_secret: '', | |
access_token: '', | |
access_token_secret: '' | |
} | |
rClient = Twitter::REST::Client.new config | |
sClient = Twitter::Streaming::Client.new(config) | |
# topics to watch | |
topics = ['#rails', '#ruby', '#coding', '#codepen'] | |
sClient.filter(:track => topics.join(',')) do |tweet| | |
if tweet.is_a?(Twitter::Tweet) | |
puts tweet.text | |
rClient.fav tweet | |
end | |
end | |
rescue | |
puts 'error occurred, waiting for 5 seconds' | |
sleep 5 | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment