1 Star 0 Fork 0

trako/gentleman

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
auth.go 860 Bytes
一键复制 编辑 原始数据 按行查看 历史
trako 提交于 2024-03-14 16:53 . fix包错误导入
package auth
import (
c "gitee.com/trako/gentleman/context"
p "gitee.com/trako/gentleman/plugin"
)
// Basic defines an authorization basic header in the outgoing request
func Basic(username, password string) p.Plugin {
return p.NewRequestPlugin(func(ctx *c.Context, h c.Handler) {
ctx.Request.SetBasicAuth(username, password)
h.Next(ctx)
})
}
// Bearer defines an authorization bearer token header in the outgoing request
func Bearer(token string) p.Plugin {
return p.NewRequestPlugin(func(ctx *c.Context, h c.Handler) {
ctx.Request.Header.Set("Authorization", "Bearer "+token)
h.Next(ctx)
})
}
// Custom defines a custom authorization header field in the outgoing request
func Custom(value string) p.Plugin {
return p.NewRequestPlugin(func(ctx *c.Context, h c.Handler) {
ctx.Request.Header.Set("Authorization", value)
h.Next(ctx)
})
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/trako/gentleman.git
git@gitee.com:trako/gentleman.git
trako
gentleman
gentleman
v2.1.1

搜索帮助