Skip to content

Commit

Permalink
Fix: Redirect url 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
sieunnnn committed Nov 11, 2023
1 parent 7496b6f commit 0979645
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class CustomAuthenticationSuccessHandler extends SimpleUrlAuthenticationS
@Override
public void onAuthenticationSuccess(HttpServletRequest request, HttpServletResponse response,
Authentication authentication) throws IOException {
String frontendRedirectUrl = "http://localhost:5173/feed"; // feed 화면으로
String frontendRedirectUrl = "http://localhost:5173/oauth/callback";
CustomOAuth2User customOAuth2User = (CustomOAuth2User) authentication.getPrincipal();
String provider = customOAuth2User.getUser().getProvider();
String email = null;
Expand Down

0 comments on commit 0979645

Please sign in to comment.