1
0
Fork 0
mirror of https://github.com/jnunemaker/httparty synced 2023-03-27 23:23:07 -04:00
🎉 Makes http fun again!
Find a file
2013-10-10 11:34:05 -04:00
bin Fix a typo on the binary help command 2012-06-26 10:26:22 -03:00
examples Fix URL paths in examples. 2013-08-12 22:15:43 -07:00
features Don't try to parse javascript as JSON 2013-09-27 12:02:03 -04:00
lib Release 0.12.0. 2013-10-10 11:32:18 -04:00
script Added script/release. 2013-10-10 11:34:05 -04:00
spec Removing memoization 2013-10-09 18:15:35 -03:00
website Updated website to point to github issues instead of lighthouse. 2009-08-22 10:25:14 -04:00
.gitignore Added rvmrc to the gitignore 2012-04-16 09:16:51 -05:00
.travis.yml adding 2.0.0 to travis test 2013-03-25 14:37:55 -04:00
cucumber.yml Progress format for cucumber. 2012-04-16 00:21:27 -04:00
Gemfile Replace multi_json gem with stdlib JSON. 2013-06-14 13:24:45 -07:00
Guardfile Add guard. 2012-04-15 22:21:03 -04:00
History Release 0.10.1. 2013-01-26 11:36:20 -05:00
httparty.gemspec Latest json gem is a dependency. 2013-06-14 13:43:23 -07:00
MIT-LICENSE Removing .txt from files (it has always annoyed me). Boo Windows! 2008-12-05 17:11:58 -05:00
Rakefile Switch to bundler for release management and use hand made gemspec. 2011-04-16 14:43:20 -04:00
README.md Require ruby 1.9.3 or higher. 2013-06-14 13:32:32 -07:00

httparty

Makes http fun again!

Install

gem install httparty

Requirements

  • Ruby 1.9.3 or higher
  • multi_xml
  • You like to party!

Examples

# Use the class methods to get down to business quickly
response = HTTParty.get('http://twitter.com/statuses/public_timeline.json')
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
  include HTTParty
  base_uri 'twitter.com'

  def initialize(u, p)
    @auth = {:username => u, :password => p}
  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)
  end

  def post(text)
    options = { :body => {:status => text}, :basic_auth => @auth }
    self.class.post('/statuses/update.json', options)
  end
end

twitter = Twitter.new(config['email'], config['password'])
pp twitter.timeline

See the examples directory for even more goodies.

Command Line Interface

httparty also includes the executable httparty which can be used to query web services and examine the resulting output. By default it will output the response as a pretty-printed Ruby object (useful for grokking the structure of output). This can also be overridden to output 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"

Help and Docs

Contributing

  • Fork the project.
  • Make your feature addition or bug fix.
  • Add tests for it. This is important so I don't break it in a future version unintentionally.
  • Commit, do not mess with rakefile, version, or history. (if you want to have your own version, that is fine but bump version in a commit by itself in another branch so I can ignore when I pull)
  • Send me a pull request. Bonus points for topic branches.