From 65affb9963713b7cd519be0c2689522d016a2dd8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8D=A1=E8=8B=A5?= Date: Sun, 8 Mar 2026 11:35:50 +0800 Subject: [PATCH] =?UTF-8?q?sync:=20soul-api=20=E6=8E=A5=E5=8F=A3=E9=80=BB?= =?UTF-8?q?=E8=BE=91=20|=20=E5=8E=9F=E5=9B=A0:=20=E5=90=8E=E7=AB=AF?= =?UTF-8?q?=E6=8E=A5=E5=8F=A3=E9=80=BB=E8=BE=91=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- soul-api/internal/handler/ckb.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/soul-api/internal/handler/ckb.go b/soul-api/internal/handler/ckb.go index 773533c8..c57fb5bc 100644 --- a/soul-api/internal/handler/ckb.go +++ b/soul-api/internal/handler/ckb.go @@ -299,6 +299,8 @@ func CKBLead(c *gin.Context) { params := map[string]interface{}{ "timestamp": ts, "source": "小程序-链接卡若", + "tags": "链接卡若,创业实验", + "siteTags": "创业实验APP,链接卡若", "remark": "首页点击「链接卡若」留资", "name": name, } @@ -311,6 +313,7 @@ func CKBLead(c *gin.Context) { params["apiKey"] = ckbAPIKey params["sign"] = ckbSign(params, ckbAPIKey) raw, _ := json.Marshal(params) + fmt.Printf("[CKBLead] 请求: phone=%s wechatId=%s name=%s\n", phone, wechatId, name) resp, err := http.Post(ckbAPIURL, "application/json", bytes.NewReader(raw)) if err != nil { c.JSON(http.StatusOK, gin.H{"success": false, "message": "网络异常,请稍后重试"})