Deprecation WarningAPI authentication via request signature is an outdated authentication. The documentation below has been included for your reference. Please migrate existing code to use Service Account authentication.
Calculating a Signature
In order to generate a request signature you will need the following information: api_key: This is the token from the corresponding to the project you wish to consume from. api_secret: This is a secret API key corresponding to the project. expire: UTC time in seconds; used to expire an API request. all other request parameters: All of the information for the API request being performed Calculating the signature is done in parts:- Alphabetically sort all parameters being used in the request. This excludes your api_secret
- alphabetically sorted order, concatenate the parameter and parameter value joined by an equal sign. For example:
param1=value1param2=value2 - append the api_secret to the string of concatenated parameters.
- md5 hash the final string