Create JWT for {{consumer.username || consumer.custom_id}}
A unique string identifying the credential. If left out, it will be auto-generated. However, usage of this key is mandatory while crafting your token, as specified in the next section.
The algorithm used to verify the token's signature. Can be HS256 or RS256.
HS256
RS256
If algorithm is RS256, the public key (in PEM format) to use to verify the token's signature.
algorithm
If algorithm is HS256, the secret used to sign JWTs for this credential. If left out, will be auto-generated. If algorithm is RS256, this is the private key (in PEM format) to use to verify the token's signature.