3 Star 9 Fork 1

os-lee/easy-paas

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
jwt_qpd_limit.go 401 Bytes
一键复制 编辑 原始数据 按行查看 历史
lee 提交于 2024-08-04 11:11 . jwt验证app token
package middleware_http
import (
"fmt"
"gitee.com/os-lee/easy-paas/gateway/internal/dao"
"github.com/gin-gonic/gin"
)
func JwtQpdLimit() gin.HandlerFunc {
return func(c *gin.Context) {
appInterface, ok := c.Get("app")
if !ok {
c.Next()
return
}
appInfo := appInterface.(*dao.App)
// todo 按租户ak统计访问量,并做限制
fmt.Println(appInfo.AccessKey)
c.Next()
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/os-lee/easy-paas.git
git@gitee.com:os-lee/easy-paas.git
os-lee
easy-paas
easy-paas
6cf1638f64c0

搜索帮助