Class: ScaleChain::AuthorizationController

Inherits:
Object
  • Object
show all
Defined in:
lib/scalechain/controllers/authorization_controller.rb

Instance Method Summary collapse

Instance Method Details

#get_access_token_by_client_credential(client_id, client_secret) ⇒ Object

TODO: type endpoint description here

Parameters:

  • client_id (String)

    Required parameter: TODO: type description here

  • client_secret (String)

    Required parameter: TODO: type description here

Returns:

  • mixed response from the API call



10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# File 'lib/scalechain/controllers/authorization_controller.rb', line 10

def get_access_token_by_client_credential client_id, client_secret
  # the base uri for api requests
  query_builder = Configuration.BASE_URI.dup

  # prepare query string for API call
  query_builder << "/oauth2/token"

  # validate and preprocess url
  query_url = APIHelper.clean_url query_builder

  # prepare headers
  headers = {
    "user-agent" => "APIMATIC 2.0",
    "accept" => "application/json"
  }

  # prepare parameters
  parameters = {
    "client_id" => client_id,
    "client_secret" => client_secret,
    "grant_type" => "client_credentials"
  }

  # invoke the API call request to fetch the response
  response = Unirest.post query_url, headers:headers, parameters:parameters

  #Error handling using HTTP status codes
  if !(response.code.between?(200,206)) # [200,206] = HTTP OK
    raise APIException.new "HTTP Response Not OK", response.code, response.raw_body
  end

  response.body
end

#get_access_token_by_refresh_token(client_id, client_secret, refresh_token) ⇒ Object

TODO: type endpoint description here

Parameters:

  • client_id (String)

    Required parameter: TODO: type description here

  • client_secret (String)

    Required parameter: TODO: type description here

  • refresh_token (String)

    Required parameter: TODO: type description here

Returns:

  • mixed response from the API call



49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# File 'lib/scalechain/controllers/authorization_controller.rb', line 49

def get_access_token_by_refresh_token client_id, client_secret, refresh_token
  # the base uri for api requests
  query_builder = Configuration.BASE_URI.dup

  # prepare query string for API call
  query_builder << "/oauth2/token"

  # validate and preprocess url
  query_url = APIHelper.clean_url query_builder

  # prepare headers
  headers = {
    "user-agent" => "APIMATIC 2.0",
    "accept" => "application/json"
  }

  # prepare parameters
  parameters = {
    "client_id" => client_id,
    "client_secret" => client_secret,
    "grant_type" => "refresh_token",
    "refresh_token" => refresh_token
  }

  # invoke the API call request to fetch the response
  response = Unirest.post query_url, headers:headers, parameters:parameters

  #Error handling using HTTP status codes
  if !(response.code.between?(200,206)) # [200,206] = HTTP OK
    raise APIException.new "HTTP Response Not OK", response.code, response.raw_body
  end

  response.body
end