你如何在golang中指定http referrer?

How do you specify the http referrer in golang?

使用标准 http.Client,如何构建在 http 请求中指定引荐来源网址的 Web 请求 header?

下面可以看到可以设置headers,但是如何指定referer呢?是不是只要设置一个Refererheader?

req, err := http.NewRequest("GET", url, nil)
if err != nil {
    return "", err
}
req.Header.Set("Accept", "text/html,application/xhtml+xml")
req.Header.Set("User-Agent", "User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1)")

response, err1 := client.Get(url)
if err1 != nil {
    return "", err1
}

是的,正如您从 Go 本身的来源中看到的那样,在 src/net/http/client.go

// Add the Referer header from the most recent
// request URL to the new one, if it's not https->http:
if ref := refererForURL(reqs[len(reqs)-1].URL, req.URL); ref != "" {
    req.Header.Set("Referer", ref)
}

检查你的方案,as in the same sources:

// refererForURL returns a referer without any authentication info or
// an empty string if lastReq scheme is https and newReq scheme is http.
func refererForURL(lastReq, newReq *url.URL) string {
    // https://tools.ietf.org/html/rfc7231#section-5.5.2
    //   "Clients SHOULD NOT include a Referer header field in a
    //    (non-secure) HTTP request if the referring page was
    //    transferred with a secure protocol."
    if lastReq.Scheme == "https" && newReq.Scheme == "http" {
        return ""
}