UnsupportedGrantTypeError¶
The authorization grant type is not supported by the authorization server. See Section 4.1.2.1 of RFC 6749.
const UnsupportedGrantTypeError = require('oauth2-server/lib/errors/unsupported-grant-type-error');
new UnsupportedGrantTypeError(message, properties)¶
Instantiates an UnsupportedGrantTypeError.
Arguments:
| Name | Type | Description |
|---|---|---|
| [message=undefined] | String|Error | See new OAuthError(message, properties). |
| [properties={}] | Object | See new OAuthError(message, properties). |
| [properties.code=400] | Object | See new OAuthError(message, properties). |
| [properties.name=’unsupported_grant_type’] | String | The error name used in responses generated from this error. |
Return value:
A new instance of UnsupportedGrantTypeError.
Remarks:
const err = new UnsupportedGrantTypeError();
// err.message === 'Bad Request'
// err.code === 400
// err.name === 'unsupported_grant_type'
name¶
Typically 'unsupported_grant_type'. See OAuthError#name.