소스 검색

优化APIKEY

zhou.xiaoning 1 년 전
부모
커밋
0953c3cec1
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      token/token.go

+ 2 - 2
token/token.go

@@ -6,7 +6,6 @@ import (
 	"encoding/hex"
 	"errors"
 	"fmt"
-	"math"
 	"mtp2_if/config"
 	"mtp2_if/global/e"
 	"mtp2_if/rediscli"
@@ -132,7 +131,8 @@ func Auth() gin.HandlerFunc {
 				c.Abort()
 				return
 			}
-			if math.Abs(float64(time.Now().UnixMilli()-int64(t))) > 10*1000 {
+			ts := int64(t) - time.Now().UnixMilli()
+			if ts >= -10*1000 && ts <= 10*1000 {
 				c.JSON(http.StatusUnauthorized, gin.H{
 					"code": e.ERROR,
 					"msg":  "apikey3",