Webhook
Copy Page
DeepSafe开发者文档
Getting Started
快速开始
创建Api Key
其他说明
http请求约定
请求头
请求方法
返回值与错误码
Body加密与签名
Webhook事件解密与校验
Webhook
Webhook说明
Webhook事件解密与校验
Api文档
README
钱包
获取钱包列表
获取单个钱包
白名单
获取白名单列表
获取可用的白名单列表
查询白名单转账限制开关状态
Schemas
wallet
list_wallet_resp
wallet_base_info
get_wallet_resp
pending_tx_count
wallet_coin_balance
wallet_coin_balance_with_price
list_wallet_item
config
coin_info
chain_info
coin_with_chain
whitelist_chain_config
sub_wallet
sub_wallet_base_info
sub_wallet_balance_item
whitelist
list_whitelist_resp
whitelist_with_chain
whitelist_tag_info
whitelist
whitelist_group_info
whitelist_transfer_restriction
restriction_status_res
audit
change_whitelist_info
base response
pageData
Webhook文档
README
白名单
创建白名单
删除白名单
修改白名单
Schemas
白名单
base response
base event
签名机
REAME
对接说明
Webhook
Copy Page
Webhook事件解密与校验
你接收到的webhook事件的body是经过加密的,加密方法和
Body加密与签名
一致,最终你的服务器应该受到如下数据:
{
"a"
:
"base64=="
,
"b"
:
"base64=="
,
"c"
:
"base64=="
}
你应该对上面数据进行解密,解密顺序如下:
1.
使用你的rsa私钥校验签名(签名在字段
c
)
2.
使用平台rsa公钥解密字段
b
,获取rsa_key和nonce
3.
用rsa_key解密字段
a
,得到数据
Modified at
2026-07-14 09:10:19
Previous
Webhook说明
Next
README