Skip to content

Commit

Permalink
fix: Authorization 값을 읽을 수 있도록 httpOnly false 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
bflykky committed Aug 2, 2024
1 parent c247dfe commit 44d7d6d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public static void addCookie(HttpServletResponse response, String name, String v
ResponseCookie cookie = ResponseCookie.from(name, value)
.path("/")
.maxAge(maxAge)
.httpOnly(true)
.httpOnly(false)
.secure(true)
.sameSite("None")
.build();
Expand Down

0 comments on commit 44d7d6d

Please sign in to comment.