Authorization key
INFO
Important
Requesting an Authorization Token
publicKey
and privateKey
pairbearer token
test mode
and production
.You can start with
test mode
, and later either request to switch status to production
or request a new Authorization keys.How to Generate a Bearer Token
Bearer tokens
are generated using JWT (JSON Web Token) with the HS256 algorithm. The token payload includes your publicKey, and it is signed using your privateKey.publicKey
: your public key that corresponds to the private key used for signingprivateKey
: used to sign the JWT (not included in the token itself)Python Example
pyjwt
library via pip install pyjwt
.
.NET Core Example
System.IdentityModel.Tokens.Jwt
package via NuGet.
Modified at 2025-04-24 16:30:32