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
John Nunemaker d05ef8f9f0 Merge pull request #357 from groupbuddies/master
Allows the response to be tapped
2014-12-16 17:54:55 -05:00
bin Changing symbol syntax inside hashes - take 2 2014-05-15 16:45:32 -04:00
examples No need to name standard error in example 2014-12-12 09:15:54 -05:00
features Use #parsed_response and eq matcher instead of includes matcher 2014-12-08 21:01:13 -08:00
lib Allows the response to be tapped 2014-12-16 12:39:31 +00:00
script Added script/release. 2013-10-10 11:34:05 -04:00
spec Adds test for tap method 2014-12-16 22:26:05 +00:00
website Changing symbol syntax inside hashes - take 2 2014-05-15 16:45:32 -04:00
.gitignore add code coverage 2014-11-28 18:06:18 +03:00
.simplecov add code coverage 2014-11-28 18:06:18 +03:00
.travis.yml Remove ree and 1.8 from travis. 2014-01-06 17:45:50 -05:00
cucumber.yml Progress format for cucumber. 2012-04-16 00:21:27 -04:00
Gemfile Bump RSpec from 1.3 to 3.1 2014-12-06 16:10:24 -08:00
Guardfile Changing symbol syntax inside hashes - take 2 2014-05-15 16:45:32 -04:00
History Release 0.13.3 2014-11-06 15:01:10 -05:00
httparty.gemspec Add license to gemspec. 2014-05-30 10:15:51 -04:00
MIT-LICENSE Removing .txt from files (it has always annoyed me). Boo Windows! 2008-12-05 17:11:58 -05:00
Rakefile Bump RSpec from 1.3 to 3.1 2014-12-06 16:10:24 -08:00
README.md stackoverflow link to Readme#Help and Docs 2014-12-01 12:53:28 +03: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('https://api.stackexchange.com/2.2/questions?site=stackoverflow')

puts response.body, response.code, response.message, response.headers.inspect

# Or wrap things up in your own class
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)
puts stack_exchange.questions
puts stack_exchange.users

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 "https://api.stackexchange.com/2.2/questions?site=stackoverflow"

Help and Docs

Contributing

  • Fork the project.
  • Run bundle
  • Run bundle exec rake
  • 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.
  • Run bundle exec rake (No, REALLY :))
  • 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.