JavaScriptでJWTデコード(日本語対応)
2364 ワード
Googleのfirebase認証の勉強中にJWTのデコードをJavaScriptで行う方法を調べたのでメモです。
日本語(utf8)が含まれていてもOK。
const decodeJwt = (token) => {
const base64Url = token.split('.')[1];
const base64 = base64Url.replace(/-/g, '+').replace(/_/g, '/');
return JSON.parse(decodeURIComponent(escape(window.atob(base64))));
};
参考
How to decode jwt token in javascript - Stack Overflow
window.btoa - Web API | MDN
Author And Source
この問題について(JavaScriptでJWTデコード(日本語対応)), 我々は、より多くの情報をここで見つけました https://qiita.com/johnslith/items/d11f827f8b14913b4a28著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .