animeic 1 year ago
parent
commit
2b6279d24e
2 changed files with 18 additions and 0 deletions
  1. 1 0
      baishuihu/api/router.go
  2. 17 0
      baishuihu/api/wechat.go

+ 1 - 0
baishuihu/api/router.go

@@ -19,6 +19,7 @@ func RegRouters(svc *Service) {
 	Nav(root)
 	// 临时展示接口
 	root.GET("/printr", Printr)
+	root.GET("/wechat", Wechat)
 
 }
 

+ 17 - 0
baishuihu/api/wechat.go

@@ -0,0 +1,17 @@
+package api
+
+import (
+	"fmt"
+
+	"github.com/gin-gonic/gin"
+)
+
+func Wechat(c *gin.Context, apictx *ApiSession) (interface{}, error) {
+	query := c.Request.URL.Query().Encode()
+	fmt.Println(query)
+	echo := c.Query("echostr")
+	// "650965b2653077b4a74fd34d"
+
+	c.String(200, echo)
+	return nil, nil
+}