Adjusted jwt access token exp expiry value to 5 days from seven, also confirmed it works and an expired token loses access and adjusted the skew to 0
This commit is contained in:
@@ -295,7 +295,7 @@ namespace AyaNova
|
||||
// Token will only be valid if not expired yet, with 5 minutes clock skew.
|
||||
ValidateLifetime = true,
|
||||
RequireExpirationTime = true,
|
||||
ClockSkew = new TimeSpan(0, 5, 0),
|
||||
ClockSkew = TimeSpan.Zero//new TimeSpan(0, 0, 2),
|
||||
};
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user