@cognigy/rest-api-client
Version:
Cognigy REST-Client
41 lines • 1.35 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.OAuth2Errors = void 0;
exports.OAuth2Errors = [
/**
* The request is missing a required parameter, includes an unsupported parameter
* value, or is otherwise malformed.
*/
"invalid_request",
/**
* The client is not authorized to request an authorization code using this method.
*/
"unauthorized_client",
/**
* The resource owner or authorization server denied the request.
*/
"access_denied",
/**
* The authorization server does not support obtaining an authorization code using
* this method.
*/
"unsupported_response_type",
/**
* The requested scope is invalid, unknown, or malformed.
*/
"invalid_scope",
/**
* The authorization server encountered an unexpected
* condition that prevented it from fulfilling the request.
* (This error code is needed because a 500 Internal Server
* Error HTTP status code cannot be returned to the client
* via an HTTP redirect.)
*/
"server_error",
/**
* The authorization server is currently unable to handle the request because of a
* temporary overloading or maintenance of the server.
*/
"temporarily_unavailable"
];
//# sourceMappingURL=IOAuth2ErrorResponse.js.map