Authentication
To authenticate your requests, pass the encoded JWT token in your authorization headers:
Authorization: 'Bearer <JWT_TOKEN>'
You can also pass the token as a url parameter with every request:
/adminly/api/...?token=<JWT_TOKEN>
The JWT token will also inspect for the exp
key and if present will only allow requests with valid expiration timestamps. For security purposes it's recommended that you encode your JWT tokens with an exp timestamp.
To setup and test JWT tokens, we recommend you explore jwt.io.
Last updated