mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 02:54:20 +00:00
14b8cf4894
This PR starts the OIDC implementation for the API V2 including the Implicit and Code Flow. Co-authored-by: Livio Spring <livio.a@gmail.com> Co-authored-by: Tim Möhlmann <tim+github@zitadel.com> Co-authored-by: Stefan Benz <46600784+stebenz@users.noreply.github.com>
24 lines
660 B
Go
24 lines
660 B
Go
package domain
|
|
|
|
type OIDCErrorReason int32
|
|
|
|
const (
|
|
OIDCErrorReasonUnspecified OIDCErrorReason = iota
|
|
OIDCErrorReasonInvalidRequest
|
|
OIDCErrorReasonUnauthorizedClient
|
|
OIDCErrorReasonAccessDenied
|
|
OIDCErrorReasonUnsupportedResponseType
|
|
OIDCErrorReasonInvalidScope
|
|
OIDCErrorReasonServerError
|
|
OIDCErrorReasonTemporaryUnavailable
|
|
OIDCErrorReasonInteractionRequired
|
|
OIDCErrorReasonLoginRequired
|
|
OIDCErrorReasonAccountSelectionRequired
|
|
OIDCErrorReasonConsentRequired
|
|
OIDCErrorReasonInvalidRequestURI
|
|
OIDCErrorReasonInvalidRequestObject
|
|
OIDCErrorReasonRequestNotSupported
|
|
OIDCErrorReasonRequestURINotSupported
|
|
OIDCErrorReasonRegistrationNotSupported
|
|
)
|