Class: StickyIoRestfulApiV2025731::Bearer

Inherits:
CoreLibrary::HeaderAuth
  • Object
show all
Includes:
CoreLibrary
Defined in:
lib/sticky_io_restful_api_v2025731/http/auth/bearer.rb

Overview

Utility class for OAuth 2 authorization and token management.

Instance Method Summary collapse

Constructor Details

#initialize(bearer_credentials) ⇒ Bearer

Initialization constructor.



17
18
19
20
21
22
23
24
# File 'lib/sticky_io_restful_api_v2025731/http/auth/bearer.rb', line 17

def initialize(bearer_credentials)
  auth_params = {}
  @_access_token = bearer_credentials.access_token unless
    bearer_credentials.nil? || bearer_credentials.access_token.nil?
  auth_params[:Authorization] = "Bearer #{@_access_token}" unless @_access_token.nil?

  super auth_params
end

Instance Method Details

#error_messageObject

Display error message on occurrence of authentication failure.



12
13
14
# File 'lib/sticky_io_restful_api_v2025731/http/auth/bearer.rb', line 12

def error_message
  'Bearer: access_token is undefined.'
end