Ejemplo: cómo decodificar el token jwt en angular
let b64DecodeUnicode = str =>
decodeURIComponent(
Array.prototype.map.call(atob(str), c =>
'%' + ('00' + c.charCodeAt(0).toString(16)).slice(-2)
).join(''))
let parseJwt = token =>
JSON.parse(
b64DecodeUnicode(
token.split('.')[1].replace('-', '+').replace('_', "https://foroayuda.es/")
)
)
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)