Skip to content

Commit

Permalink
fix: redirect url 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Haewonny committed Feb 25, 2024
1 parent ec0124e commit 765d2d5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public RedirectView googleLogin(@RequestParam(name = "code") String code) {

RedirectView redirectView = new RedirectView();

redirectView.setUrl("http://localhost:3000/login/callback?accessToken={accessToken}&refreshToken={refreshToken}");
redirectView.setUrl("https://hearo-hmuri.vercel.app/login/callback?accessToken={accessToken}&refreshToken={refreshToken}");
redirectView.addStaticAttribute("accessToken", accessToken);
redirectView.addStaticAttribute("refreshToken", refreshToken);

Expand Down

0 comments on commit 765d2d5

Please sign in to comment.