backChannel

fun backChannel(backChannelConfig: ServerOidcBackChannelLogoutDsl.() -> Unit)

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 { }
}
}
}
}
}

Parameters

backChannelConfig

custom configurations to configure OIDC 1.0 Back-Channel Logout support

See also