Exception: Rack::OAuth2::Server::InvalidClientError
- Inherits:
-
OAuthError
- Object
- StandardError
- OAuthError
- Rack::OAuth2::Server::InvalidClientError
- Defined in:
- lib/rack/oauth2/server/errors.rb
Overview
The client identifier provided is invalid, the client failed to authenticate, the client did not include its credentials, provided multiple client credentials, or used unsupported credentials type.
Instance Attribute Summary
Attributes inherited from OAuthError
Instance Method Summary collapse
-
#initialize ⇒ InvalidClientError
constructor
A new instance of InvalidClientError.
Constructor Details
#initialize ⇒ InvalidClientError
Returns a new instance of InvalidClientError.
36 37 38 |
# File 'lib/rack/oauth2/server/errors.rb', line 36 def initialize super :invalid_client, "Client ID and client secret do not match." end |