Skip to content

Instantly share code, notes, and snippets.

@igaiga
Created January 27, 2013 11:07
Show Gist options
  • Save igaiga/4647876 to your computer and use it in GitHub Desktop.
Save igaiga/4647876 to your computer and use it in GitHub Desktop.
# -*- coding: utf-8 -*-
require "twitter"
Twitter.configure do |config|
config.consumer_key = "consumer_key"
config.consumer_secret = "consumer_secret"
config.oauth_token = "oauth_token"
config.oauth_token_secret = "oauth_token_secret"
end
Twitter.search("新宿", :rpp =>100, :result_type => "recent")[:statuses].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