|
@@ -374,6 +374,9 @@ func (this *WechatCommonController) Notify() {
|
|
|
fmt.Println("signature:", signature)
|
|
|
fmt.Println("timestamp:", timestamp)
|
|
|
fmt.Println("nonce:", nonce)
|
|
|
+
|
|
|
+ method := this.Ctx.Input.Method()
|
|
|
+ fmt.Println("Method:", method)
|
|
|
body := this.Ctx.Input.RequestBody
|
|
|
paramsMap := this.Ctx.Input.Params()
|
|
|
fmt.Println("paramsMap")
|
|
@@ -387,3 +390,34 @@ func (this *WechatCommonController) Notify() {
|
|
|
utils.FileLog.Info("notify paramsJson result:" + string(paramsJson))
|
|
|
this.Ctx.WriteString(echostr)
|
|
|
}
|
|
|
+
|
|
|
+type Notify struct {
|
|
|
+ ToUserName string `xml:"ToUserName"`
|
|
|
+ FromUserName string `xml:"FromUserName"`
|
|
|
+ CreateTime int `xml:"CreateTime"`
|
|
|
+ MsgType string `xml:"MsgType"`
|
|
|
+ Event string `xml:"Event"`
|
|
|
+ EventKey string `xml:"EventKey"`
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|