Add stackexchange API example.

This commit is contained in:
Gregory McCue 2014-03-11 17:31:22 -05:00
parent 2ea1499bf4
commit 6d35a4aa2d
3 changed files with 39 additions and 25 deletions

View File

@ -18,37 +18,31 @@ gem install httparty
```ruby
# Use the class methods to get down to business quickly
response = HTTParty.get('http://twitter.com/statuses/public_timeline.json')
response = HTTParty.get('https://api.stackexchange.com/2.2/questions?site=stackoverflow')
puts response.body, response.code, response.message, response.headers.inspect
response.each do |item|
puts item['user']['screen_name']
end
# Or wrap things up in your own class
class Twitter
class StackExchange
include HTTParty
base_uri 'twitter.com'
base_uri 'api.stackexchange.com'
def initialize(u, p)
@auth = {:username => u, :password => p}
def initialize(service, page)
@options = { :query => {:site => service, :page => page} }
end
# which can be :friends, :user or :public
# options[:query] can be things like since, since_id, count, etc.
def timeline(which=:friends, options={})
options.merge!({:basic_auth => @auth})
self.class.get("/statuses/#{which}_timeline.json", options)
def questions
self.class.get("/2.2/questions", @options)
end
def post(text)
options = { :body => {:status => text}, :basic_auth => @auth }
self.class.post('/statuses/update.json', options)
def users
self.class.get("/2.2/users", @options)
end
end
twitter = Twitter.new(config['email'], config['password'])
pp twitter.timeline
stack_exchange = StackExchange.new("stackoverflow", 1)
puts stack_exchange.questions
puts stack_exchange.users
```
See the [examples directory](http://github.com/jnunemaker/httparty/tree/master/examples) for even more goodies.
@ -63,7 +57,7 @@ formatted XML or JSON. Execute `httparty --help` for all the
options. Below is an example of how easy it is.
```
httparty "http://twitter.com/statuses/public_timeline.json"
httparty "https://api.stackexchange.com/2.2/questions?site=stackoverflow"
```
## Help and Docs

View File

@ -3,13 +3,9 @@ require File.join(dir, 'httparty')
require 'pp'
# You can also use post, put, delete, head, options in the same fashion
response = HTTParty.get('http://twitter.com/statuses/public_timeline.json')
response = HTTParty.get('https://api.stackexchange.com/2.2/questions?site=stackoverflow')
puts response.body, response.code, response.message, response.headers.inspect
response.each do |item|
puts item['user']['screen_name']
end
# An example post to a minimal rails app in the development environment
# Note that "skip_before_filter :verify_authenticity_token" must be set in the
# "pears" controller for this example

24
examples/stackexchange.rb Normal file
View File

@ -0,0 +1,24 @@
dir = File.expand_path(File.join(File.dirname(__FILE__), '..', 'lib'))
require File.join(dir, 'httparty')
require 'pp'
class StackExchange
include HTTParty
base_uri 'api.stackexchange.com'
def initialize(service, page)
@options = { :query => {:site => service, :page => page} }
end
def questions
self.class.get("/2.2/questions", @options)
end
def users
self.class.get("/2.2/users", @options)
end
end
stack_exchange = StackExchange.new("stackoverflow", 1)
pp stack_exchange.questions
pp stack_exchange.users