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