OpenIdLogoutFormData
OpenIdLogoutFormData
Represents OpenId Connect logout form data
JSON Example
{
"post_logout_redirect_uri": "https://example-app.com/redirect?auth%3Doauth",
"id_token_hint": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c",
"state": "somerandomvalue"
}
string
post_logout_redirect_uri
Required
URL to redirect back to the client after performing logout actions. This URL must be already configured on the client.
string
id_token_hint
Required
ID Token previously issued by WS1 Access passed to the Logout Endpoint as a hint about the End-User's current authenticated session with the Client. This is used to figure out the user trying to logout.
string
state
Optional
A random string that your application generates and that will be sent back as a parameter during the URI redirection.