获取HTTP请求中重定向后的最终URL
使用http.NewRequest发起HTTP请求时,可能会遇到需要解压的情况即使客户端遇到重定向,也可以从最终 URL 查询字符串。但是,您可能在 Response 对象中找不到此信息。
解决方案:
获取最终 URL 的一种方法是在 CheckRedirect 中使用匿名函数http.Client 结构的字段。此匿名函数用作每次重定向之前执行的回调,以捕获请求的 URL。
下面是一个示例:
import ( "errors" "fmt" "io" "log" "net/http" ) func main() { req, err := http.NewRequest("GET", "https://example.com/path", nil) if err != nil { log.Fatal(err) } cl := http.Client{} var lastUrlQuery string // Custom CheckRedirect function to capture the final URL before each redirect cl.CheckRedirect = func(req *http.Request, via []*http.Request) error { if len(via) > 10 { return errors.New("too many redirects") } lastUrlQuery = req.URL.RequestURI() return nil } resp, err := cl.Do(req) if err != nil { log.Fatal(err) } defer resp.Body.Close() // Use the lastUrlQuery variable to access the final URL after any redirects fmt.Printf("Last URL Query: %s\n", lastUrlQuery) // Read the response body for further processing io.Copy(io.Discard, resp.Body) }
在此脚本中,一个匿名函数被分配给 CheckRedirect http.Client 的字段。此匿名函数在每次重定向发生之前将 lastUrlQuery 变量设置为请求的 URL。因此,您可以在发生任何重定向后检索请求的最终 URL。
以上是Go中如何获取HTTP重定向后的最终URL?的详细内容。更多信息请关注PHP中文网其他相关文章!