Authentication
API Authentication
Authorization
header using the Bearer
schema.Autorization: Bearer {JWT_TOKEN}
JWT Token
access key
and secret key
Required JWT Claims
claims
depending on the HTTP method.Claim | Description | Http Method |
---|---|---|
accessKey | access key | ALL |
nonce | random uuid (v4) | POST, PUT, DELETE |
iat | JWT Registered Claim (link) | ALL |
JWT Token with Expiration Time
The server verifies the token’s validity period using the
iat(issued at)
claim. for example,Sample Codes
Java
Kotlin
Python
Node
Modified at 2024-11-06 12:36:55