gentleman/auth
gentleman's plugin to easily define HTTP authorization headers based on multiple schemas.
Installation
go get -u gitee.com/trako/gentleman/plugins/auth
API
See godoc reference.
Example
package main
import (
"fmt"
"gopkg.in/h2non/gentleman.v2"
"gitee.com/trako/gentleman/plugins/auth"
)
func main() {
// Create a new client
cli := gentleman.New()
// Attach the plugin at client level
cli.Use(auth.Basic("user", "pas$w0rd"))
// Perform the request
res, err := cli.Request().Method().URL("http://httpbin.org/headers").Send()
if err != nil {
fmt.Printf("Request error: %s\n", err)
return
}
if !res.Ok {
fmt.Printf("Invalid server response: %d\n", res.StatusCode)
return
}
fmt.Printf("Status: %d\n", res.StatusCode)
fmt.Printf("Body: %s", res.String())
}
License
MIT - Tomas Aparicio