gentleman's plugin to easily manage HTTP headers.
Installation
go get -u gopkg.in/h2non/gentleman.v0/plugins/headers
API
See godoc reference.
Example
package main
import (
"fmt"
"gopkg.in/h2non/gentleman.v0"
"gopkg.in/h2non/gentleman.v0/plugins/headers"
)
func main() {
// Create a new client
cli := gentleman.New()
// Define a custom header
cli.Use(headers.Set("API-Token", "s3cr3t"))
// Remove a header
cli.Use(headers.Del("User-Agent"))
// Perform the request
res, err := cli.Request().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