hcmp/weapp/message.go
2024-07-31 15:48:23 +08:00

25 lines
711 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package weapp
import (
"net/http"
"github.com/gin-gonic/gin"
"github.com/shockliu/logger"
)
// 小程序客服通知消息鉴权
func CheckSign(c *gin.Context) {
/* 开发者提交信息后微信服务器将发送GET请求到填写的服务器地址URL上GET请求携带参数如下表所示
参数 描述
signature 微信加密签名signature结合了开发者填写的token参数和请求中的timestamp参数、nonce参数。
timestamp 时间戳
nonce 随机数
echostr 随机字符串
*/
//signature:=c.Query("signature")
//nonce:=c.Query("nonce")
echostr := c.Query("echostr")
logger.Debugf("微信小程序消息推送鉴权%s\n", echostr)
c.String(http.StatusOK, echostr)
}