jnunemaker / httparty

Makes http fun! Also, makes consuming restful web services dead easy.

This URL has Read+Write access

evri (author)
Wed Aug 27 13:38:19 -0700 2008
jnunemaker (committer)
Fri Oct 24 21:32:31 -0700 2008
commit  31ad4f91c8c234b15b0d415eb2c088f6838846dc
tree    7c214ed9d7df3205196c01124dcb61d6f99f48a3
parent  df9957cfa569c4a15230f5b2cda0a5d8f1b3e727
README.txt
= httparty

== DESCRIPTION:

Makes http fun again!

== FEATURES/PROBLEMS:

* Easy get, post, put, delete requests
* Basic http authentication
* Default request query string parameters (ie: for api keys that are needed on each request)
* Automatic parsing of JSON and XML into ruby hashes based on response content-type

== SYNOPSIS:

The following is a simple example of wrapping Twitter's API for posting updates.

  class Twitter
    include HTTParty
    base_uri 'twitter.com'
    basic_auth 'username', 'password'
  end

  Twitter.post('/statuses/update.json', :query => {:status => "It's an HTTParty and everyone is invited!"})

That is really it! The object returned is a ruby hash that is decoded from Twitter's json response. JSON parsing is used 
because of the .json extension in the path of the request. You can also explicitly set a format (see the examples). 

That works and all but what if you don't want to embed your username and password in the class? Below is an example to 
fix that:

  class Twitter
    include HTTParty
    base_uri 'twitter.com'

    def initialize(u, p)
      @auth = {:username => u, :password => p}
    end

    def post(text)
      options = { :query => {:status => text}, :basic_auth => @auth }
      self.class.post('/statuses/update.json', options)
    end
  end
  
  Twitter.new('username', 'password').post("It's an HTTParty and everyone is invited!")

== REQUIREMENTS:

* Active Support >= 2.1

== INSTALL:

* sudo gem install httparty