これはセキュリティ設定です
@Override
protected void configure(HttpSecurity http) throws Exception {
http
.csrf()
.disable()
.formLogin()
.disable()
.httpBasic()
.disable()
.authorizeRequests()
.antMatchers("/auth/**", "/oauth2/**")
.permitAll()
.anyRequest()
.authenticated()
.and()
.oauth2Login()
.authorizationEndpoint()
.baseUri("/oauth2/authorize")
.and()
.redirectionEndpoint()
.baseUri("/oauth2/callback/*")
.and()
.userInfoEndpoint()
.userService(customOAuth2UserService)
.and()
.successHandler(oAuth2AuthenticationSuccessHandler)
.failureHandler(oAuth2AuthenticationFailureHandler);
}
フロントエンドの URL はhttp://localhost:8080/oauth2/authorize/google?redirect_uri=http://localhost:8080/some-url
ただし、ユーザーが承認され、正常にログインした後、ユーザーはリダイレクトされませんhttp://localhost:8080/some-url
何が原因で、どのように修正することができますか?