JSON Web Token (JWT)
What is JSON Web Token?
How to use it?
Generate RSA-256 keys
# generate rsa key
openssl genrsa -out jwtRSA256-private.pem 2048
openssl rsa -in jwtRSA256-private.pem -pubout -outform PEM -out jwtRSA256-public.pem
Enable JWT in 4EVERLAND RPC


Generate the JWT
Header
Field
Description
Example
Payload
Field
Required
Description
Example
Signature
JWT
Send request with JWT
What if the JWT is incorrect ?

Last updated