Class: ShellEv::OAuthProviderErrorEnum
- Inherits:
-
Object
- Object
- ShellEv::OAuthProviderErrorEnum
- Defined in:
- lib/shell_ev/models/o_auth_provider_error_enum.rb
Overview
OAuth 2 Authorization error codes
Constant Summary collapse
- O_AUTH_PROVIDER_ERROR_ENUM =
[ # The request is missing a required parameter, includes an unsupported # parameter value (other than grant type), repeats a parameter, includes # multiple credentials, utilizes more than one mechanism for # authenticating the client, or is otherwise malformed. INVALID_REQUEST = 'invalid_request'.freeze, # Client authentication failed (e.g., unknown client, no client # authentication included, or unsupported authentication method). INVALID_CLIENT = 'invalid_client'.freeze, # The provided authorization grant (e.g., authorization code, resource # owner credentials) or refresh token is invalid, expired, revoked, does # not match the redirection URI used in the authorization request, or was # issued to another client. INVALID_GRANT = 'invalid_grant'.freeze, # The authenticated client is not authorized to use this authorization # grant type. UNAUTHORIZED_CLIENT = 'unauthorized_client'.freeze, # The authorization grant type is not supported by the authorization # server. UNSUPPORTED_GRANT_TYPE = 'unsupported_grant_type'.freeze, # The requested scope is invalid, unknown, malformed, or exceeds the scope # granted by the resource owner. INVALID_SCOPE = 'invalid_scope'.freeze ].freeze
Class Method Summary collapse
Class Method Details
.validate(value) ⇒ Object
39 40 41 42 43 |
# File 'lib/shell_ev/models/o_auth_provider_error_enum.rb', line 39 def self.validate(value) return false if value.nil? O_AUTH_PROVIDER_ERROR_ENUM.include?(value) end |