JWT Token Generation
JWT Token is usually generated and supplied by the other system which is consuming the endpoints published in the war. The public key in base 64 encoded format has to be configured in the war prior to the deployment.
The following token generation is only for testing purposes.
Generate JWT token from https://dinochiesa.github.io/jwt/ using the following data:
{
"alg": "RS256",
"typ": "JWT"
}
{
"iss": "Fabric",
"iat": 1589593140,
"exp": 1621129142
}
Please ensure to use the supplied public and private keys while generating token
Sample token would look like as follows:
In this topic