Read a JWT - Plain / PEM key
Read and decode the encoded token using the same secret plain text key or the public key related to the generated private PEM key used for token generation. 
To verify the signature of an asymmetric generated token, the public key related to the private one (when generating the PEM file) is necessary. 
Implementation steps
1. Configure all necessary parameters
Encoded token
Verify Signature ?
Verify Lifetime ?
Verify Issuer ?
Verify Audience ?
2. Configure the ReadTokenService action
Create a read action (tipically a screen action) to handle the JWT reading and decoding. 
Open the read action (ReadToken) created previously and drag the following action:  
Fill in the action parameters, with the parameters configured in the previous step.
3. Trigger the read action to decode the token
The ReadTokenService action returns the following parameters:
PlainToken: The decoded token information in JSON format
TokenPayloadRec: All Payload data of decoded token.
TokenHeaderRec: All Header data of decoded token.
ValidToken: Defines if the decoded token is a valid one. 
ResultMessage: If validation fails, an output message is sent. 
Decoded token
No decoded token...
Click here to see your activities