【发布时间】:2018-08-25 02:16:56
【问题描述】:
我已经按照Spring Boot OAuth2 教程来配置 OAuth2 客户端。不幸的是,一旦“用户”通过 Idp (Okta) 进行身份验证,就会发生带有“代码”的重定向,从而导致重定向循环:/login -> /authorize... -> /login... -> /login
Firefox 检测到服务器正在以永远不会完成的方式重定向对该地址的请求。
有谁知道问题是什么或可能是什么以及如何解决?详情如下。
Okta 配置:
登录重定向 URI:http://localhost:8080/auth/login
注销重定向 URI: http://localhost:8080/auth/logout
登录发起者:仅限应用
发起登录 URI:http://localhost:8080/auth/login
配置属性为:
okta:
oauth2:
client:
client-id: clientId
client-secret: clientSecret
scope: openid profile email
client-authentication-scheme: form
access-token-uri: https://mydomain.oktapreview.com/oauth2/myapp/v1/token
user-authorization-uri: https://mydomain.oktapreview.com/oauth2/myapp/v1/authorize
resource:
user-info-uri: https://mydomain.oktapreview.com/oauth2/myapp/v1/userinfo
过滤器是:
private Filter filter() {
OAuth2ClientAuthenticationProcessingFilter filter = new OAuth2ClientAuthenticationProcessingFilter(
"/login");
OAuth2RestTemplate restTemplate = new OAuth2RestTemplate(oktaClient(), oauth2ClientContext);
filter.setRestTemplate(restTemplate);
UserInfoTokenServices tokenServices = new UserInfoTokenServices(oktaResource().getUserInfoUri(),
oktaClient().getClientId());
tokenServices.setRestTemplate(restTemplate);
filter.setTokenServices(tokenServices);
return filter;
}
WebSecurityConfigurerAdapter 配置为:
@Configuration
@EnableOAuth2Client
public class WebSecConfig extends WebSecurityConfigurerAdapter {
....
@Override
public void configure(HttpSecurity http) throws Exception {
http.antMatcher("/**").authorizeRequests()
.antMatchers("/", "/login**", "/logout**", "/v2/api-docs", "/configuration/ui",
"/configuration/security", "/swagger-resources/**", "/swagger-ui.html", "/webjars/**")
.permitAll()
.anyRequest().authenticated().and().exceptionHandling()
.authenticationEntryPoint(new LoginUrlAuthenticationEntryPoint("/login")).and().csrf()
.csrfTokenRepository(
CookieCsrfTokenRepository.withHttpOnlyFalse()).and().addFilterBefore(filter(),
BasicAuthenticationFilter.class);
}
....
}
更新:
解决方案是将LoginUrlAuthenticationEntryPoint("/login") 更改为LoginUrlAuthenticationEntryPoint("/") 并重新创建授权服务器。
【问题讨论】:
-
请用主课更新您的问题
标签: java spring-boot spring-security spring-security-oauth2 okta