Skip to content

Commit b143124

Browse files
authored
Merge pull request #329 from GTable/refactor/#326-samesite-principel-change
refactor: refreshToken sameSite 정책 변경 ## Issue Link
2 parents 3a112e4 + a5b7f85 commit b143124

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

nowait-app-user-api/src/main/java/com/nowait/applicationuser/oauth/oauth2/OAuth2LoginSuccessHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public void onAuthenticationSuccess(HttpServletRequest request, HttpServletRespo
6464
.secure(false) // 운영환경에서는 true
6565
.path("/")
6666
.maxAge(30L * 24 * 60 * 60) // 30일 (초 단위)
67-
.sameSite("Lax")
67+
.sameSite("Strict")
6868
.build();
6969

7070
// 기존 방식 대신 ResponseCookie.toString()을 헤더로 추가

0 commit comments

Comments
 (0)