FAQ
Common questions and answers for developers during integration.
Signature Verification Error
If the API returns 0004 Signature verification error, please check the following:
- Parameter sorting: Are parameters sorted in ascending ASCII (lexicographic) order?
- Parameter filtering: Have you excluded
signand parameters with empty values? - Key appending: Is the key correctly appended to the end of the parameter string as
&{platform_key}? (Append the key directly, without akey=prefix) - Encryption method: Are you using the MD5 algorithm and converting the result to lowercase?
- Encoding: It is recommended to use UTF-8 encoding for all Chinese parameters to avoid signature mismatches caused by encoding issues.
For more signature details, please refer to Signature Guide.