Skip to content

Commit

Permalink
[fix] referer 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
Jiwon committed Feb 4, 2024
1 parent 2f3252e commit 38d6ee5
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,8 @@ private void writeTokenResponse(HttpServletRequest request, HttpServletResponse
refreshTokenCookie.setPath("/");
response.addCookie(refreshTokenCookie);

targetUrl = UriComponentsBuilder.fromUriString(targetUrl)
.build().toUriString();

log.info("타켓URl, 쿠키정보: " + targetUrl, accessTokenCookie, refreshTokenCookie);
getRedirectStrategy().sendRedirect(request,response, targetUrl);
getRedirectStrategy().sendRedirect(request, response, targetUrl);
}

}
Expand Down

0 comments on commit 38d6ee5

Please sign in to comment.