-
-
Notifications
You must be signed in to change notification settings - Fork 265
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #171 from galois17/feature-add-examples
Add another example
- Loading branch information
Showing
2 changed files
with
43 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
#!/usr/bin/env ruby -r rubygems | ||
# | ||
# ./twitter.rb --consumer-key <key> --consumer-secret <secret> <tweet_id> | ||
|
||
require 'oauth' | ||
require 'optparse' | ||
require 'json' | ||
require 'pp' | ||
|
||
options = {} | ||
|
||
option_parser = OptionParser.new do |opts| | ||
opts.banner = "Usage: #{$0} [options] <query>" | ||
|
||
opts.on("--consumer-key KEY", "Specifies the consumer key to use.") do |v| | ||
options[:consumer_key] = v | ||
end | ||
|
||
opts.on("--consumer-secret SECRET", "Specifies the consumer secret to use.") do |v| | ||
options[:consumer_secret] = v | ||
end | ||
end | ||
|
||
option_parser.parse! | ||
query = ARGV.pop | ||
query = STDIN.read if query == "-" | ||
|
||
if options[:consumer_key].nil? || options[:consumer_secret].nil? || query.nil? | ||
puts option_parser.help | ||
exit 1 | ||
end | ||
|
||
consumer = OAuth::Consumer.new \ | ||
options[:consumer_key], | ||
options[:consumer_secret], | ||
:site => "https://api.twitter.com" | ||
|
||
access_token = OAuth::AccessToken.new(consumer) | ||
|
||
response = access_token.request(:get, "/1.1/statuses/show/#{OAuth::Helper.escape(query)}.json") | ||
rsp = JSON.parse(response.body) | ||
pp rsp |
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