Skip to content

Instantly share code, notes, and snippets.

@mikecobas
Forked from Klerith/parse-jwt.js
Created August 13, 2021 05:32
Show Gist options
  • Save mikecobas/facb37ab2a6f5666c045f4f5e7017013 to your computer and use it in GitHub Desktop.
Save mikecobas/facb37ab2a6f5666c045f4f5e7017013 to your computer and use it in GitHub Desktop.
Parse - JWT - Obtener Payload y fecha de creación y expiración
function parseJwt (token) {
var base64Url = token.split('.')[1];
var base64 = base64Url.replace('-', '+').replace('_', '/');
return JSON.parse(window.atob(base64));
};
@mikecobas
Copy link
Author

Ejemplo de lectura de token

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment