class HaveAPI::Authentication::OAuth2::Client

Abstract class describing the client and what methods it must respond to

Attributes

client_id[R]

@return [String]

redirect_uri[R]

@return [String]

Public Instance Methods

check_secret(client_secret) click to toggle source

@param client_secret [String] @return [Boolean]

# File lib/haveapi/authentication/oauth2/provider.rb, line 16
def check_secret(client_secret)
  raise NotImplementedError
end