zhou.xiaoning 1 năm trước cách đây
mục cha
commit
1070fc87fd
1 tập tin đã thay đổi với 4 bổ sung1 xóa
  1. 4 1
      token/token.go

+ 4 - 1
token/token.go

@@ -8,6 +8,7 @@ import (
 	"fmt"
 	"mtp2_if/config"
 	"mtp2_if/global/e"
+	"mtp2_if/logger"
 	"mtp2_if/rediscli"
 	"net/http"
 	"runtime"
@@ -131,7 +132,9 @@ func Auth() gin.HandlerFunc {
 				c.Abort()
 				return
 			}
-			ts := int64(t) - time.Now().UnixMilli()
+			now := time.Now().UnixMilli()
+			ts := int64(t) - now
+			logger.GetLogger().Debugf("t:%v now:%v ts: %v", t, now, ts)
 			if ts < -10*1000 && ts > 10*1000 {
 				c.JSON(http.StatusUnauthorized, gin.H{
 					"code": e.ERROR,