You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When you set JWT_SESSION_COOKIE = False to enable permanent cookies, the expiration date set by default is way too long and the browser will sometimes treat it as invalid and set the cookie as a session cookie anyway.
Expiration dates on permanent cookies typically need to be before 2038 since it's specified in a UNIX epoch format.
The text was updated successfully, but these errors were encountered:
When you set
JWT_SESSION_COOKIE = False
to enable permanent cookies, the expiration date set by default is way too long and the browser will sometimes treat it as invalid and set the cookie as a session cookie anyway.Expiration dates on permanent cookies typically need to be before 2038 since it's specified in a UNIX epoch format.
The text was updated successfully, but these errors were encountered: