djangorestframework-simplejwt
djangorestframework-simplejwt copied to clipboard
Caim "Issued At" not updated after token refresh
When a token is refreshed, the iat
(Issued At) claim is copied from the refresh token instead of setting it as a current time. According to RFC (https://datatracker.ietf.org/doc/html/rfc7519#section-4.1.6):
The "iat" (issued at) claim identifies the time at which the JWT was issued.
Is current behavior expected, or is it a bug? If it's expected, could it be documented somewhere?