class HaveAPI::Authentication::OAuth2::Authorization

Abstract class describing ongoing authorization and what methods it must respond to

Attributes

code_challenge[R]

@return [String, nil]

code_challenge_method[R]

@return [String, nil]

redirect_uri[R]

@return [String]

Public Instance Methods

check_code_validity(redirect_uri) click to toggle source

@param redirect_uri [String] @return [Boolean]

# File lib/haveapi/authentication/oauth2/provider.rb, line 49
def check_code_validity(redirect_uri)
  raise NotImplementedError
end