Open abolix opened 1 week ago
because max time is 24 days.
Could you please elaborate why? Is it a technical limitation from JavaScript side, our library or Django? Afaik, browser limits on cookie age are high enough for your usecase
I want my user to have the refresh token cookie for 90 days. because it's standard to keep the refresh token for this amount of days but I can't set the maxAgeInSeconds to 90 days. so it's gonna be expired after 24 days but it should be kept for 90.
Environment
Reproduction
Describe the bug
I have Django JWT Backed with access (5 minutes exp) & refresh token (90 days exp) the refresh token rotation is not active so I used
refreshOnlyToken:true
.I want my refresh token cookie to be expired in 90 days. but I can't set
maxAgeInSeconds
to60 * 60 * 24 * 90
because max time is 24 days.what is the approach here ?
Additional context
No response
Logs
No response