From 71f7be01496e8d671cf52afd3ac2473afc142193 Mon Sep 17 00:00:00 2001 From: laodaming <11058467+laudamine@user.noreply.gitee.com> Date: Mon, 6 Nov 2023 17:35:13 +0800 Subject: [PATCH] fix --- server/feishu-sync/internal/handler/webhookhandler.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/feishu-sync/internal/handler/webhookhandler.go b/server/feishu-sync/internal/handler/webhookhandler.go index 759d3ff3..d6502d4f 100644 --- a/server/feishu-sync/internal/handler/webhookhandler.go +++ b/server/feishu-sync/internal/handler/webhookhandler.go @@ -16,8 +16,6 @@ import ( func WebhookHandler(svcCtx *svc.ServiceContext) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { - b, _ := io.ReadAll(r.Body) - log.Println("收到body信息:", string(b)) var req types.WebhookReq userinfo, err := basic.RequestParse(w, r, svcCtx, &req) if err != nil { @@ -32,6 +30,8 @@ func WebhookHandler(svcCtx *svc.ServiceContext) http.HandlerFunc { w.Write(b) return } + b, _ := io.ReadAll(r.Body) + log.Println("收到body信息:", string(b)) log.Println("收到头消息:", r.Header) // 创建一个业务逻辑层实例 l := logic.NewWebhookLogic(r.Context(), svcCtx)