backChannel
Configures the OIDC 1.0 Back-Channel endpoint.
Example:
@Configuration
@EnableWebSecurity
class SecurityConfig {
@Bean
fun securityFilterChain(http: HttpSecurity): SecurityFilterChain {
http {
oauth2Login { }
oidcLogout {
backChannel { }
}
}
return http.build()
}
}Content copied to clipboard
Parameters
backChannelConfig
custom configurations to configure the back-channel endpoint