Skip to content

Instantly share code, notes, and snippets.

@igaiga
Last active October 6, 2015 08:58
Show Gist options
  • Save igaiga/2969556 to your computer and use it in GitHub Desktop.
Save igaiga/2969556 to your computer and use it in GitHub Desktop.
twitter gem
# https://github.com/sferik/twitter
# $ gem install twitter
require 'twitter'
# set tokens
# https://dev.twitter.com/apps
Twitter.configure do |config|
config.consumer_key = YOUR_CONSUMER_KEY
config.consumer_secret = YOUR_CONSUMER_SECRET
config.oauth_token = YOUR_OAUTH_TOKEN
config.oauth_token_secret = YOUR_OAUTH_TOKEN_SECRET
end
Twitter.search("nowplaying", :rpp => 100, :result_type => "recent").each do |status|
puts "#{status.from_user}: #{status.text}"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment