Page:
ZH_Basicauth
Pages
Actions
Basicauth
Binding
Captcha
Compress
Context
Debug
Dispatch
ErrHandler
Events
Flash
Forms
Group
Handler
Home
Injection
Logger
Params
QuickStart
Recovery
Renders
Return
Router
Session
Static
Tango
Tpongo2
Xsrf
ZH_Actions
ZH_Basicauth
ZH_Binding
ZH_Captcha
ZH_Compress
ZH_Context
ZH_Debug
ZH_Dispatch
ZH_ErrHandler
ZH_Events
ZH_Flash
ZH_Forms
ZH_Group
ZH_HOME
ZH_Handler
ZH_Injection
ZH_Logger
ZH_Params
ZH_Recovery
ZH_Renders
ZH_Return
ZH_Router
ZH_Session
ZH_Static
ZH_Tango
ZH_Tpongo2
ZH_Xsrf
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.
Basicauth 中间件提供了Http Basic认证,是一个 Tango 的中间件。
安装
go get gitea.com/tango/basicauth
示例
type AuthAction struct {}
func (a *AuthAction) Get() string {
return "200"
}
func main() {
tg := tango.Classic()
tg.Use(basicauth.New(user, pass))
tg.Get("/", new(AuthAction))
}
如果不希望某个Action进行认证,则只要把basiauth.NoAuth作为匿名成员即可。
type NoAuthAction struct {
basicauth.NoAuth
}
func (a *NoAuthAction) Get() string {
return "200"
}
func main() {
tg := tango.Classic()
tg.Use(basicauth.New(user, pass))
tg.Get("/", new(NoAuthAction))
}