首页 > 后端开发 > Golang > Go中如何获取HTTP重定向后的最终URL?

Go中如何获取HTTP重定向后的最终URL?

Linda Hamilton
发布: 2024-11-18 07:45:03
原创
227 人浏览过

How to Get the Final URL After HTTP Redirection in Go?

获取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中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板