From 14852b4d538309746dd7b0a7566200a6148a48c1 Mon Sep 17 00:00:00 2001 From: Jaehyun Ahn <91878695+uwoobeat@users.noreply.github.com> Date: Sat, 2 Mar 2024 18:45:13 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EC=BF=A0=ED=82=A4=20=EC=88=98=EC=A0=95?= =?UTF-8?q?=20=EC=A0=84=EA=B9=8C=EC=A7=80=20=EB=A6=AC=EB=8B=A4=EC=9D=B4?= =?UTF-8?q?=EB=A0=89=ED=8A=B8=20URL=EC=9D=84=20=EC=98=A8=EB=B3=B4=EB=94=A9?= =?UTF-8?q?=EC=9C=BC=EB=A1=9C=20=EA=B3=A0=EC=A0=95=ED=95=98=EB=8F=84?= =?UTF-8?q?=EB=A1=9D=20=EB=B3=80=EA=B2=BD=20(#224)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fix: 리다이렉트 URL 고정 --- .../gdschongik/gdsc/global/security/CustomSuccessHandler.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/java/com/gdschongik/gdsc/global/security/CustomSuccessHandler.java b/src/main/java/com/gdschongik/gdsc/global/security/CustomSuccessHandler.java index e60e28240..f1b0c069a 100644 --- a/src/main/java/com/gdschongik/gdsc/global/security/CustomSuccessHandler.java +++ b/src/main/java/com/gdschongik/gdsc/global/security/CustomSuccessHandler.java @@ -34,7 +34,9 @@ public CustomSuccessHandler(JwtService jwtService, CookieUtil cookieUtil) { public void onAuthenticationSuccess( HttpServletRequest request, HttpServletResponse response, Authentication authentication) throws ServletException, IOException { - String baseUri = determineTargetUrl(request, response); + // TODO: 사파리 쿠키 이슈 해결 후 재활성화 + // String baseUri = determineTargetUrl(request, response); + String baseUri = PROD_CLIENT_ONBOARDING_URL; CustomOAuth2User oAuth2User = (CustomOAuth2User) authentication.getPrincipal();