Module: SalesforceChatter::Request

Included in:
API
Defined in:
lib/salesforce-chatter/request.rb

Instance Method Summary collapse

Instance Method Details

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



4
5
6
# File 'lib/salesforce-chatter/request.rb', line 4

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

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



8
9
10
# File 'lib/salesforce-chatter/request.rb', line 8

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