Class: SwaggerClient::AuthApi
- Inherits:
-
Object
- Object
- SwaggerClient::AuthApi
- Defined in:
- lib/swagger_client/api/auth_api.rb
Instance Attribute Summary collapse
-
#api_client ⇒ Object
Returns the value of attribute api_client.
Instance Method Summary collapse
-
#initialize(api_client = ApiClient.default) ⇒ AuthApi
constructor
A new instance of AuthApi.
-
#key_secret(customerid, opts = {}) ⇒ ApiKeyResponse
Generates an API Key/Secret pair.
-
#key_secret_with_http_info(customerid, opts = {}) ⇒ Array<(ApiKeyResponse, Fixnum, Hash)>
Generates an API Key/Secret pair.
-
#login(credentials, opts = {}) ⇒ TokenResponse
Generates a Json Web Token.
-
#login_with_http_info(credentials, opts = {}) ⇒ Array<(TokenResponse, Fixnum, Hash)>
Generates a Json Web Token.
Constructor Details
Instance Attribute Details
#api_client ⇒ Object
Returns the value of attribute api_client.
17 18 19 |
# File 'lib/swagger_client/api/auth_api.rb', line 17 def api_client @api_client end |
Instance Method Details
#key_secret(customerid, opts = {}) ⇒ ApiKeyResponse
Generates an API Key/Secret pair
28 29 30 31 |
# File 'lib/swagger_client/api/auth_api.rb', line 28 def key_secret(customerid, opts = {}) data, _status_code, _headers = key_secret_with_http_info(customerid, opts) return data end |
#key_secret_with_http_info(customerid, opts = {}) ⇒ Array<(ApiKeyResponse, Fixnum, Hash)>
Generates an API Key/Secret pair
38 39 40 41 42 43 44 45 46 47 48 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 |
# File 'lib/swagger_client/api/auth_api.rb', line 38 def key_secret_with_http_info(customerid, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: AuthApi.key_secret ..." end # verify the required parameter 'customerid' is set if @api_client.config.client_side_validation && customerid.nil? fail ArgumentError, "Missing the required parameter 'customerid' when calling AuthApi.key_secret" end # resource path local_var_path = "/auth/getApiKey" # query parameters query_params = {} query_params[:'customerid'] = customerid # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json;charset=UTF-8']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = [] data, status_code, headers = @api_client.call_api(:GET, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'ApiKeyResponse') if @api_client.config.debugging @api_client.config.logger.debug "API called: AuthApi#key_secret\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#login(credentials, opts = {}) ⇒ TokenResponse
Generates a Json Web Token
84 85 86 87 |
# File 'lib/swagger_client/api/auth_api.rb', line 84 def login(credentials, opts = {}) data, _status_code, _headers = login_with_http_info(credentials, opts) return data end |
#login_with_http_info(credentials, opts = {}) ⇒ Array<(TokenResponse, Fixnum, Hash)>
Generates a Json Web Token
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 |
# File 'lib/swagger_client/api/auth_api.rb', line 94 def login_with_http_info(credentials, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: AuthApi.login ..." end # verify the required parameter 'credentials' is set if @api_client.config.client_side_validation && credentials.nil? fail ArgumentError, "Missing the required parameter 'credentials' when calling AuthApi.login" end # resource path local_var_path = "/auth/token" # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json;charset=UTF-8']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json']) # form parameters form_params = {} # http body (model) post_body = @api_client.object_to_http_body(credentials) auth_names = [] data, status_code, headers = @api_client.call_api(:POST, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'TokenResponse') if @api_client.config.debugging @api_client.config.logger.debug "API called: AuthApi#login\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |