Class: Trusona::Api::HTTPClient

Inherits:
Object
  • Object
show all
Defined in:
lib/trusona/api/client.rb

Overview

An a wrapper around HTTParty

Constant Summary collapse

POST =
'POST'
GET =
'GET'
PATCH =
'PATCH'
DELETE =
'DELETE'
CONTENT_TYPE =
'application/json;charset=utf-8'

Instance Method Summary collapse

Constructor Details

#initialize(host = nil) ⇒ HTTPClient

Returns a new instance of HTTPClient.


15
16
17
# File 'lib/trusona/api/client.rb', line 15

def initialize(host = nil)
  @host = host || Trusona.config.api_host
end

Instance Method Details

#delete(path, params = {}) ⇒ Object


31
32
33
# File 'lib/trusona/api/client.rb', line 31

def delete(path, params = {})
  execute(path, params, DELETE)
end

#get(path, params = {}) ⇒ Object


27
28
29
# File 'lib/trusona/api/client.rb', line 27

def get(path, params = {})
  execute(path, params, GET)
end

#patch(path, params = {}) ⇒ Object


23
24
25
# File 'lib/trusona/api/client.rb', line 23

def patch(path, params = {})
  execute(path, params, PATCH)
end

#post(path, params = {}) ⇒ Object


19
20
21
# File 'lib/trusona/api/client.rb', line 19

def post(path, params = {})
  execute(path, params, POST)
end