From b36fe3aca6af20435491806856713600d36e0c2b Mon Sep 17 00:00:00 2001 From: anlicheng <244108715@qq.com> Date: Fri, 28 Nov 2025 15:46:07 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=8C=E5=96=84=E6=96=87=E6=A1=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/endpoint.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/endpoint.md b/docs/endpoint.md index 68116bb..403da9f 100644 --- a/docs/endpoint.md +++ b/docs/endpoint.md @@ -23,10 +23,13 @@ CREATE TABLE `endpoint` ( ### config_json中的数据配置 #### http方式: type=http + token是可选的,如果接收服务器端需要提供校验;可以添加token字段,校验算法采用的: $Sign = sha256(token + "post_body" + token), 有token的情况下 + 通过http推送的数据会增加一个header, 格式为 X-Signature: $Sign ```json { "url": "http(s)://www.test.com/api", + "token": "ngyehngcohezqyabnlhollsfcnyqobmwfcfyvbzdbhuubucojcpeefpczruiccfw", "pool_size": 10 }