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
2008-07-28 13:20:03 -04:00
config Tweaking information and readme. 2008-07-28 13:20:03 -04:00
examples Documented and tweaked the examples a bit. 2008-07-28 12:58:40 -04:00
lib Made it so default_params actually get merged into request. 2008-07-28 12:40:40 -04:00
script Renamed to HTTParty which is way more fun and unique than boring old web. 2008-07-28 10:49:53 -04:00
spec Made it so default_params actually get merged into request. 2008-07-28 12:40:40 -04:00
tasks Initial commit 2008-07-27 11:52:18 -04:00
.gitignore Initial commit 2008-07-27 11:52:18 -04:00
History.txt Initial commit 2008-07-27 11:52:18 -04:00
License.txt Tweaking information and readme. 2008-07-28 13:20:03 -04:00
Manifest.txt Tweaking information and readme. 2008-07-28 13:20:03 -04:00
PostInstall.txt Renamed to HTTParty which is way more fun and unique than boring old web. 2008-07-28 10:49:53 -04:00
Rakefile Initial commit 2008-07-27 11:52:18 -04:00
README.txt Tweaking information and readme. 2008-07-28 13:20:03 -04:00
setup.rb Initial commit 2008-07-27 11:52:18 -04:00

= 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

== 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/udpate.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(user, pass)
	    self.class.basic_auth user, pass
	  end
  
	  def post(text)
	    self.class.post('/statuses/update.json', :query => {:status => text})
	  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