Skip to content

Commit 9e3ae5d

Browse files
authored
Merge pull request #265 from prgrms-web-devcourse-final-project/feature/oauth/redirect
Feature: 배포 후 OAuth 리다이렉트 Url 수정
2 parents 0c748d4 + 19f4068 commit 9e3ae5d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/grep/neogulcoder/global/auth/oauth/OAuthSuccessHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public void onAuthenticationSuccess(HttpServletRequest request, HttpServletRespo
4545

4646
response.addHeader("Set-Cookie", accessTokenCookie.toString());
4747
response.addHeader("Set-Cookie", refreshTokenCookie.toString());
48-
getRedirectStrategy().sendRedirect(request, response, "http://localhost:3000/auth/callback");
48+
getRedirectStrategy().sendRedirect(request, response, "https://wibby.vercel.app/auth/callback");
4949
}
5050

5151
}

0 commit comments

Comments
 (0)