Before starting integration you need:Receive authorization keys from the manager (bearer token);
Provide us with your servers' IP addresses to enter into our list of allowed IP addresses.
For Bearer authorization, JWT (JSON Web Token) is used, utilizing the HS256 algorithm. The token includes publicKey in the payload and is signed with the privateKey.The payload of our JWT will include the following field:publicKey: The public key that corresponds to the private key used to sign the JWT.
The privateKey is used to sign the JWT.Example in Python:
Requirements
Install the pyjwt library using the command pip install pyjwt.Example in .NET Core:
Requirements
Install the System.IdentityModel.Tokens.Jwt package using NuGet. Modified at 2024-12-12 13:18:26