In order to provide more secure authentication for callback requests, we recommend using additional authentication methods for security verification.
callback_token and callbakc_secret through the dashboardCallback-Token is consistent, More secure authentication is also possible with Signature| Param | Description | Example |
|---|---|---|
| Callback-Token | Callback Token from Callback Authentication page | EEB0C8EEB1B6C7D9C7D938449C44DAE7DC484C87C14E |
| Date | Current timestamp in ISO-8601 format | 2024-06-17T00:00:00Z |
| Signature | Base64-encoded signature information (calculated using a hash algorithm). | Please refer to the following Signature for the rule of generating. |
| Name | Description | Example |
|---|---|---|
| Date | Current timestamp in ISO-8601 format | 2024-06-17T00:00:00Z |
| callback_url | The full callback URL, including the protocol and parameters | https://api.you.com/callback?id=32 |
Signature parameter involves these steps:signature_origin:signature_origin is formed by concatenating the following parameters using | as the delimiter:{date} | {callback_url}signature_sha:signature_sha using HMAC-SHA256 with callbakc_secret:signature_sha=hmac-sha256(signature_origin, callbakc_secret)signature_sha:signature_sha using base64 to obtain the final signature:signature parameter.