Created
December 30, 2020 01:54
-
-
Save ibejohn818/20cd5ae1fa74ef04927d09f2265ca803 to your computer and use it in GitHub Desktop.
parse jwt
This file contains hidden or 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(/-/g, '+').replace(/_/g, '/'); | |
var jsonPayload = decodeURIComponent(atob(base64).split('').map(function(c) { | |
return '%' + ('00' + c.charCodeAt(0).toString(16)).slice(-2); | |
}).join('')); | |
return JSON.parse(jsonPayload); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment