Skip to content

异步通知

该文档用于描述交易结果异步通知。

通知说明

请求接口是上报的通知地址为http/https路径,服务器通知时使用POST请求,不支持HTTP重定向,请求内容编码统一使用UTF-8

请求参数

参数名称类型必填说明
sign数据签名string数据签名
data业务数据JSON string业务数据
time时间戳int当前unix时间戳,精确到秒

请求报文示例

Content-Type: multipart/form-data;
Connection: Keep-Alive

------WebKitFormBoundary8xFiURY20NruAD7q
Content-Disposition: form-data; name="sign"

asdfasdfb649ef89371dbd5c47686efbabf2e65...
------WebKitFormBoundary8xFiURY20NruAD7q
Content-Disposition: form-data; name="data"

{"amount":"10.00","appid":"wx76cd636ab63648ef","detail":"详情","gateway":"weixin","notifyurl":"https://...","openid":"o7DvX6N9B94Y-6BAGEyCEmQYPgSM","sequence":"221102738947","subject":"订单","terminal":"T544357445576893"}
------WebKitFormBoundary8xFiURY20NruAD7q
Content-Disposition: form-data; name="time"

1668671935
------WebKitFormBoundary8xFiURY20NruAD7q--

签名方式

详见 签名算法

响应内容

服务器应答状态为200且应答内容为 SUCCESS 时表示成功,其它均为失败。 请求失败后会重试3次,3次后依然失败,不再发送通知请求,商户需要使用交易信息查询接口来获取交易结果。

SUCCESS