invalidclient
invalidclient is the term used to describe an OAuth 2.0 and OpenID Connect error indicating that the client authentication has failed or the client is not permitted to use the requested grant type. The standard error code is invalid_client, and it is defined in RFC 6749 as the response when a token request cannot be authenticated or the client is not recognized or authorized for the operation.
In practice, invalid_client arises at the token endpoint when a client attempts to obtain tokens and the
Common causes include incorrect client credentials, a mismatch between the registered redirect_uri and the one used
See also: OAuth 2.0 error handling, RFC 6749, token endpoint, client authentication.