I’m trying to create a mock JWT token which will have as issuer the TykInternalGateway. This JWT will then be processed by another microservice which will validate the token. I want to test that microservice so would like to have a token which I can just pass to it which has as an issuer, the TykApiGateway. The algorithm used will be RS256. For example I am wanted to create a JWT similar to this:
{
“…”,
“iat”: “12344”.
“iss”: “TykApiGateway”,
“…”
}
Is this possible?