authorizationEndpoint
Configures the Authorization Server's Authorization Endpoint.
Example:
@Configuration
@EnableWebSecurity
class SecurityConfig {
@Bean
fun securityFilterChain(http: HttpSecurity): SecurityFilterChain {
http {
oauth2Login {
authorizationEndpoint {
baseUri = "/auth"
}
}
}
return http.build()
}
}Content copied to clipboard
Parameters
authorizationEndpointConfig
custom configurations to configure the authorization endpoint