How to decode JWT Token payload on client side?

前端 未结 2 869
暖寄归人
暖寄归人 2021-02-12 18:39

I\'m using a jwt token for authentication and would like to read the payload information on the client-side. Right now I\'m doing something like this:

var payloa         


        
2条回答
  •  你的背包
    2021-02-12 19:19

    From https://github.com/auth0/jwt-decode

    download .build/jwt-decode.min.js file and include in the project.

    
    
    var token = 'eyJ0eXAiOo876jgJ96...'; // jwt token;
    var decoded = jwt_decode(token);
    console.log(decoded);
    

提交回复
热议问题