summaryrefslogtreecommitdiff
path: root/templates/project/jobs/twitter.rb
diff options
context:
space:
mode:
Diffstat (limited to 'templates/project/jobs/twitter.rb')
-rw-r--r--templates/project/jobs/twitter.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/project/jobs/twitter.rb b/templates/project/jobs/twitter.rb
index 5e70f30..26228bc 100644
--- a/templates/project/jobs/twitter.rb
+++ b/templates/project/jobs/twitter.rb
@@ -3,7 +3,7 @@ require 'twitter'
#### Get your twitter keys & secrets:
#### https://dev.twitter.com/docs/auth/tokens-devtwittercom
-Twitter.configure do |config|
+twitter = Twitter::REST::Client.new do |config|
config.consumer_key = 'YOUR_CONSUMER_KEY'
config.consumer_secret = 'YOUR_CONSUMER_SECRET'
config.oauth_token = 'YOUR_OAUTH_TOKEN'
@@ -14,10 +14,10 @@ search_term = URI::encode('#todayilearned')
SCHEDULER.every '10m', :first_in => 0 do |job|
begin
- tweets = Twitter.search("#{search_term}").results
+ tweets = twitter.search("#{search_term}")
if tweets
- tweets.map! do |tweet|
+ tweets = tweets.map do |tweet|
{ name: tweet.user.name, body: tweet.text, avatar: tweet.user.profile_image_url_https }
end
send_event('twitter_mentions', comments: tweets)