DengBiao 1 anno fa
parent
commit
784506b4de
1 ha cambiato i file con 2 aggiunte e 1 eliminazioni
  1. +2
    -1
      app/hdl/hdl_wx.go

+ 2
- 1
app/hdl/hdl_wx.go Vedi File

@@ -87,7 +87,7 @@ type WXEventForScanMsg struct {
func WXMsgReceive(c *gin.Context) {
log.Printf("[消息接收] - 收到新消息")
var msg WXMsg
err := c.ShouldBindXML(&msg)
err := c.ShouldBindJSON(&msg)
if err != nil {
log.Printf("[消息接收] - XML数据包解析失败: %v\n", err)
return
@@ -147,6 +147,7 @@ func WXMsgReceive(c *gin.Context) {
}

c.String(http.StatusOK, "")
return
}

// WXRepTextMsg 微信回复文本消息结构体


Caricamento…
Annulla
Salva