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
2020-02-20 10:57:39 +03:00
bin Handle json parsing errors and fall back to inspect for CLI 2017-04-21 10:09:43 -04:00
docs Update README.md (#646) 2019-02-18 18:36:03 +04:00
examples Expose .connection on block param (#648) 2019-03-20 18:50:06 +04:00
features Support gzip/deflate transfer encoding when explicit headers are set. 2019-11-28 15:23:35 -08:00
lib cookie_hash.rb cleanup (#687) 2020-02-20 10:57:39 +03:00
script Added script/release. 2013-10-10 11:34:05 -04:00
spec Merge pull request #684 from zype/cookie-samesite-param 2020-02-19 11:05:23 -05:00
website Adds editorconfig 2018-10-09 11:16:46 +05:30
.editorconfig Adds editorconfig 2018-10-09 11:16:46 +05:30
.gitignore added lock and unlock http support 2018-05-02 22:27:02 +02:00
.rubocop.yml Adds rubocop configuration 2015-04-24 07:23:24 +02:00
.rubocop_todo.yml Adds rubocop configuration 2015-04-24 07:23:24 +02:00
.simplecov add code coverage 2014-11-28 18:06:18 +03:00
.travis.yml Add support for Net::HTTP#write_timeout method (Ruby 2.6.0) (#647) 2019-03-20 18:52:02 +04:00
Changelog.md Update changelog 2020-02-19 11:09:25 -05:00
CONTRIBUTING.md Create CONTRIBUTING.md 2015-05-30 07:52:30 -04:00
cucumber.yml Progress format for cucumber. 2012-04-16 00:21:27 -04:00
Gemfile Normalize urls with URI adapter to allow International Domain Names support (#668) 2019-08-30 17:27:59 +03:00
Guardfile Mitigates Style/TraillingComma 2015-04-18 01:29:25 +02:00
httparty.gemspec Remove test_files from gemspec (#658) 2019-05-20 09:00:01 +04:00
MIT-LICENSE
Rakefile Bump RSpec from 1.3 to 3.1 2014-12-06 16:10:24 -08:00
README.md Use new link for yardoc 2018-08-15 11:02:04 +08:00

httparty

Makes http fun again! Ain't no party like a httparty, because a httparty don't stop.

Install

gem install httparty

Requirements

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

Examples

# Use the class methods to get down to business quickly
response = HTTParty.get('http://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.