Skip to content

Commit

Permalink
๐Ÿ› fix: set secure option false
Browse files Browse the repository at this point in the history
Related: #48
  • Loading branch information
yeni-choi committed Dec 23, 2023
1 parent ee09216 commit 34213d8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public ResponseEntity<?> login(@RequestBody LoginRequestDto loginRequest) {
.path("/")
.domain(domain)
.httpOnly(true)
.secure(true)
.secure(false)
.sameSite(Cookie.SameSite.NONE.attributeValue()) //์„œ๋“œํŒŒํ‹ฐ ์ฟ ํ‚ค ์‚ฌ์šฉ ํ—ˆ์šฉ
.build();

Expand Down Expand Up @@ -83,7 +83,7 @@ public ResponseEntity<?> reissue(@CookieValue("refresh-token") String requestRef
.path("/")
.domain(domain)
.httpOnly(true)
.secure(true)
.secure(false)
.sameSite(Cookie.SameSite.NONE.attributeValue())
.build();

Expand Down

0 comments on commit 34213d8

Please sign in to comment.