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
It is now possible to retry the email code entry form.
Validation of redirect_uri in the OAuth authorization code flow could result in false negatives in some cases, when input does not match a reserialized version of the URL. For example, a URL without a path like https://example.com would always be rejected on the POST /token request, because during the POST /auth request it was parsed and stored as https://example.com/ (trailing slash), and no longer compared equal. This is now fixed.