代码拉取完成,页面将自动刷新
package main
import (
"errors"
"fmt"
"gitee.com/trako/gentleman/context"
"gitee.com/trako/gentleman/plugins/headers"
)
func main() {
// Create a new client
cli := gentleman.New()
// Define a custom header
cli.Use(headers.Set("Token", "s3cr3t"))
// Declare first error phase middleware handler
cli.UseError(func(ctx *context.Context, h context.Handler) {
fmt.Printf("1) Handling error: %s\n", ctx.Error)
h.Next(ctx)
})
// Declare second error phase middleware handler
cli.UseError(func(ctx *context.Context, h context.Handler) {
fmt.Printf("2) Handling error: %s\n", ctx.Error)
// Overwrite error with wrapped message
ctx.Error = errors.New("wrapped error: " + ctx.Error.Error())
h.Next(ctx)
})
// Attach a phase-specific middleware function.
cli.UseHandler("after dial", func(ctx *context.Context, h context.Handler) {
ctx.Error = errors.New("simulated error")
h.Next(ctx)
})
// Perform the request
req := cli.Request()
// Declare request-level error phase middleware handler
req.UseError(func(ctx *context.Context, h context.Handler) {
fmt.Printf("3) Handling request-level error: %s\n", ctx.Error)
h.Next(ctx)
})
res, err := req.URL("http://httpbin.org/ip").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("Header: %s\n", res.Header.Get("Server"))
fmt.Printf("Body: %s", res.String())
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。