Module: RestClient

Defined in:
lib/rest_client.rb,
lib/resource.rb,
lib/request_errors.rb

Overview

This module’s static methods are the entry point for using the REST client.

# GET
xml = RestClient.get 'http://example.com/resource'
jpg = RestClient.get 'http://example.com/resource', :accept => 'image/jpg'

# authentication and SSL
RestClient.get 'https://user:[email protected]/private/resource'

# POST or PUT with a hash sends parameters as a urlencoded form body
RestClient.post 'http://example.com/resource', :param1 => 'one'

# nest hash parameters
RestClient.post 'http://example.com/resource', :nested => { :param1 => 'one' }

# POST and PUT with raw payloads
RestClient.post 'http://example.com/resource', 'the post body', :content_type => 'text/plain'
RestClient.post 'http://example.com/resource.xml', xml_doc
RestClient.put 'http://example.com/resource.pdf', File.read('my.pdf'), :content_type => 'application/pdf'

# DELETE
RestClient.delete 'http://example.com/resource'

For live tests of RestClient, try using rest-test.heroku.com, which echoes back information about the rest call:

>> RestClient.put 'http://rest-test.heroku.com/resource', :foo => 'baz'
=> "PUT http://rest-test.heroku.com/resource with a 7 byte payload, content type application/x-www-form-urlencoded {\"foo\"=>\"baz\"}"

Defined Under Namespace

Classes: Exception, Redirect, Request, RequestFailed, RequestTimeout, Resource, ResourceNotFound, ServerBrokeConnection, Unauthorized

Class Method Summary collapse

Class Method Details

.delete(url, headers = {}) ⇒ Object



56
57
58
59
60
# File 'lib/rest_client.rb', line 56

def self.delete(url, headers={})
	Request.execute(:method => :delete,
		:url => url,
		:headers => headers)
end

.get(url, headers = {}) ⇒ Object



36
37
38
39
40
# File 'lib/rest_client.rb', line 36

def self.get(url, headers={})
	Request.execute(:method => :get,
		:url => url,
		:headers => headers)
end

.post(url, payload, headers = {}) ⇒ Object



42
43
44
45
46
47
# File 'lib/rest_client.rb', line 42

def self.post(url, payload, headers={})
	Request.execute(:method => :post,
		:url => url,
		:payload => payload,
		:headers => headers)
end

.put(url, payload, headers = {}) ⇒ Object



49
50
51
52
53
54
# File 'lib/rest_client.rb', line 49

def self.put(url, payload, headers={})
	Request.execute(:method => :put,
		:url => url,
		:payload => payload,
		:headers => headers)
end