Skip to content

Commit

Permalink
Merge pull request #127 from swm-nodriversomabus/FIX-LOGOUT-LOGIN
Browse files Browse the repository at this point in the history
fix(BE): 쿠키가아닌 jwt 유효시간으로 수정 access_token 유효시간 수정 for 에러체크용 #114
  • Loading branch information
namhyo01 authored Oct 19, 2023
2 parents 485c49e + 84be868 commit 5a3d765
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public String genereateRefreshToken(String id, String role, String provider) {

public String generateAccessToken(String id, String role, String provider) {
// long tokenPeriod = 1000L * 60L * 60L; // 1시간 유효성
long tokenPeriod = 1000L; // 1시간 유효성
long tokenPeriod = 1000L * 60L; // 1시간 유효성
return getToken(id, role, provider, tokenPeriod);
}

Expand Down

0 comments on commit 5a3d765

Please sign in to comment.