class ApiWarden::Authentication::Params
Attributes
authentication[R]
Public Class Methods
new(authentication)
click to toggle source
# File lib/api_warden/authentication/params.rb, line 8 def initialize(authentication) @authentication = authentication end
Public Instance Methods
request()
click to toggle source
# File lib/api_warden/authentication/params.rb, line 16 def request authentication.request end
retrieve_access_token()
click to toggle source
# File lib/api_warden/authentication/params.rb, line 24 def retrieve_access_token raise NotImplementedError end
retrieve_id()
click to toggle source
# File lib/api_warden/authentication/params.rb, line 20 def retrieve_id raise NotImplementedError end
retrieve_refresh_token()
click to toggle source
# File lib/api_warden/authentication/params.rb, line 28 def retrieve_refresh_token raise NotImplementedError end
scope()
click to toggle source
# File lib/api_warden/authentication/params.rb, line 12 def scope authentication.scope end