How to read the "extras" paramater within a JWT Token - get more information

Hi, I think it was not prioritised since, I will add it in the roadmap :slight_smile:

In the meantime you could try to paste this inside a global formula named Parse JWT

const base64Url = token.split('.')[1];
const base64 = base64Url.replace(/-/g, '+').replace(/_/g, '/');
const jsonPayload = decodeURIComponent(window.atob(base64).split('').map(function(c) {
    return '%' + ('00' + c.charCodeAt(0).toString(16)).slice(-2);
}).join(''));

return JSON.parse(jsonPayload);
3 Likes