Skip to content

Commit

Permalink
엑세스 토큰 생존 시간 늘림
Browse files Browse the repository at this point in the history
  • Loading branch information
hyukjinKimm committed Jul 16, 2024
1 parent f79a2f1 commit 89aabaa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public class JwtConstants {
public static final String REFRESH_TOKEN_PREFIX = "refreshToken:";
public static final String KAKAO_AUTHORIZATION_PARAM = "authorization_code";
public static final String ROLE = "role";
public static final Long ACCESS_TOKEN_EXPIRATION_TIME = 60 * 1000L * 20; // 20분
public static final Long ACCESS_TOKEN_EXPIRATION_TIME = 60 * 1000L * 60 * 60; // 60시간
public static final Long REFRESH_TOKEN_EXPIRATION_TIME = 60 * 1000L * 60 * 24 * 7 * 2; // 2주일

}

0 comments on commit 89aabaa

Please sign in to comment.