InvalidScopeError¶
The requested scope is invalid, unknown, or malformed. See Section 4.1.2.1 of RFC 6749.
const InvalidScopeError = require('oauth2-server/lib/errors/invalid-scope-error');
new InvalidScopeError(message, properties)¶
Instantiates an InvalidScopeError.
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=’invalid_scope’] | String | The error name used in responses generated from this error. |
Return value:
A new instance of InvalidScopeError.
Remarks:
const err = new InvalidScopeError();
// err.message === 'Bad Request'
// err.code === 400
// err.name === 'invalid_scope'
name¶
Typically 'invalid_scope'. See OAuthError#name.