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
Switch token separate from / (slash) to URL safe character . (dot)
Some email clients replace double slashes with a single slash.
The double slash occurred for users with no last_login date (newly
created users).
To bypass this issue, the separator is changed to . (dot) as it is
a non-reserved URL safe character (RFC3986 2.3) and not part of the
base64url alphabet.
Add option to allow to use a token more than once.
With the setting LOGIN_TOKEN_SINGLE_USE this behaviour is set. Where True is the default and only allows to use a token once. With False a token can be used multiple times.