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
{{ message }}
This repository was archived by the owner on Jun 5, 2021. It is now read-only.
The JWT claims section is malfomed and could not be decoded as JSON.
After some digging, it turns out that the funcion base64.atob in utils.js uses window.atob, which perform base64 decoding, whereas JWTs are encoded with base64url which use a slighty different alphabet.
The ID site sometimes displays this message:
After some digging, it turns out that the funcion
base64.atobinutils.jsuseswindow.atob, which perform base64 decoding, whereas JWTs are encoded with base64url which use a slighty different alphabet.