jwt.Parse code example

Example 1: js jwt decode

import jwt_decode from "jwt-decode";
var token = "eyJ0eXAiO...";
var decoded = jwt_decode(token);
console.log(decoded);

/* prints: * { foo: "bar", *   exp: 1393286893, *   iat: 1393268893  } */

Example 2: jwt encode

jwt.encode( { 'client_id':'value', 'expires_in':'datetime'}, SECRET_KEY, algorithm='HS256' )

OBS:
Convert datetime to string because in the backend is a json encode system 
and it will generate a TypeError
ex: TypeError: Object of type datetime is not JSON serializable

Example 3: jwt decode

jwt.decode( token, SECRET_KEY, algorithm='HS256' )

Tags:

Misc Example