Jwt token expiration time extended from 2 to 24h
This commit is contained in:
@@ -14,7 +14,7 @@ func generateToken(userID int, username string) (string, error) {
|
|||||||
claims := jwt.MapClaims{
|
claims := jwt.MapClaims{
|
||||||
"user_id": userID,
|
"user_id": userID,
|
||||||
"username": username,
|
"username": username,
|
||||||
"exp": time.Now().Add(2 * time.Hour).Unix(),
|
"exp": time.Now().Add(24 * time.Hour).Unix(),
|
||||||
}
|
}
|
||||||
token := jwt.NewWithClaims(jwt.SigningMethodHS256, claims)
|
token := jwt.NewWithClaims(jwt.SigningMethodHS256, claims)
|
||||||
return token.SignedString(jwtSecret)
|
return token.SignedString(jwtSecret)
|
||||||
|
|||||||
Reference in New Issue
Block a user