Exception: Rack::OAuth2::Server::InvalidClientError

Inherits:
OAuthError
  • Object
show all
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

#code

Instance Method Summary collapse

Constructor Details

#initializeInvalidClientError

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