backChannel
Enables OIDC 1.0 Back-Channel Logout support.
Example:
@Configuration
@EnableWebFluxSecurity
class SecurityConfig {
@Bean
fun springWebFilterChain(http: ServerHttpSecurity): SecurityWebFilterChain {
return http {
oauth2Login { }
oidcLogout {
backChannel {
sessionLogout { }
}
}
}
}
}Content copied to clipboard
Parameters
backChannelConfig
custom configurations to configure OIDC 1.0 Back-Channel Logout support