backChannel

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

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()
}
}

Parameters

backChannelConfig

custom configurations to configure the back-channel endpoint

See also