Created
March 15, 2018 15:07
-
-
Save Klerith/44ee5349fa13699d9c5f1e82b3be040e to your computer and use it in GitHub Desktop.
Parse - JWT - Obtener Payload y fecha de creación y expiración
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function parseJwt (token) { | |
var base64Url = token.split('.')[1]; | |
var base64 = base64Url.replace('-', '+').replace('_', '/'); | |
return JSON.parse(window.atob(base64)); | |
}; |
Gracias!! Fernando
Excelente Fernando gracias
Gracias Profesor Fernando.
Muchas gracias profesor
Genial profe!!
Me va quedando mucho mas claro el proceso del token.
Muy bien, esta muy bien explicado esto de los tokens es muy educativo saber esto, Gracias Hermano..
excelente profe gracias por el conocimiento adquirido.
Excelente, Gracias profe Fernando!
Excelente, gracias profe una función muy útil
Excelente explicación profe :)
Buena explicación profe
Buena esa profe xD
gracias!!
Interesante!
Muchas Gracias profe
Buenísimo, muchas gracias!
gracias!
Genial
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
brutal