* feat: update end session request to pass all params according to specification * register encoder
12 lines
514 B
Go
12 lines
514 B
Go
package oidc
|
|
|
|
// EndSessionRequest for the RP-Initiated Logout according to:
|
|
// https://openid.net/specs/openid-connect-rpinitiated-1_0.html#RPLogout
|
|
type EndSessionRequest struct {
|
|
IdTokenHint string `schema:"id_token_hint"`
|
|
LogoutHint string `schema:"logout_hint"`
|
|
ClientID string `schema:"client_id"`
|
|
PostLogoutRedirectURI string `schema:"post_logout_redirect_uri"`
|
|
State string `schema:"state"`
|
|
UILocales Locales `schema:"ui_locales"`
|
|
}
|