API signature generation
Learn how to generate a signature for further work with the PassMe service.
Prepare Parameters: For each request, prepare the parameters that will be transmitted. Include all necessary parameters in the request.
Create a Query String: Create a query string by arranging all the parameters in the format key=value, separated by the & symbol.
Sign the Query String: Use your private API key to sign the query string. Depending on the programming language used, you can use the following functions:
In PHP:
In JavaScript (using the CryptoJS library):
Last updated