我已经关注了配置OAuth2客户端的Spring Boot 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("/")
并重新创建授权服务器。
答案 0 :(得分:1)
您应该使用默认授权服务器或您创建的服务器。如果您使用默认值,它应该类似于:
https://mydomain.oktapreview.com/oauth2/default