Module: Instagram::Request

Defined in:
lib/instagram/request.rb

Overview

Defines HTTP request methods

Instance Method Summary collapse

Instance Method Details

#delete(path, options = {}, raw = false, unformatted = false, no_response_wrapper = false) ⇒ Object

Perform an HTTP DELETE request



20
21
22
# File 'lib/instagram/request.rb', line 20

def delete(path, options={}, raw=false, unformatted=false, no_response_wrapper=false)
  request(:delete, path, options, raw, unformatted, no_response_wrapper)
end

#get(path, options = {}, raw = false, unformatted = false, no_response_wrapper = false) ⇒ Object

Perform an HTTP GET request



5
6
7
# File 'lib/instagram/request.rb', line 5

def get(path, options={}, raw=false, unformatted=false, no_response_wrapper=false)
  request(:get, path, options, raw, unformatted, no_response_wrapper)
end

#post(path, options = {}, raw = false, unformatted = false, no_response_wrapper = false) ⇒ Object

Perform an HTTP POST request



10
11
12
# File 'lib/instagram/request.rb', line 10

def post(path, options={}, raw=false, unformatted=false, no_response_wrapper=false)
  request(:post, path, options, raw, unformatted, no_response_wrapper)
end

#put(path, options = {}, raw = false, unformatted = false, no_response_wrapper = false) ⇒ Object

Perform an HTTP PUT request



15
16
17
# File 'lib/instagram/request.rb', line 15

def put(path, options={}, raw=false, unformatted=false, no_response_wrapper=false)
  request(:put, path, options, raw, unformatted, no_response_wrapper)
end