douwei6478 2016-05-03 20:23 采纳率: 100%
浏览 162
已采纳

Golang:我可以删除来​​自ReverseProxy的响应头吗?

I'm using httputil.ReverseProxy to proxy Amazon s3 files to my clients. I'd like to hide all headers coming from Amazon - is that possible without having to reimplement Reverse Proxy?

proxy := httputil.ReverseProxy{Director: func(r *http.Request) {
    r.Header = http.Header{} // Don't send client's request headers to Amazon.
    r.URL = proxyURL
    r.Host = proxyURL.Host
}}
proxy.ServeHTTP(w, r) // How do I remove w.Headers ?
  • 写回答

2条回答 默认 最新

  • donglu5235 2016-05-03 21:28
    关注

    You can implement ReverseProxy.Transport

    type MyTransport struct{
        header http.Header
    }
    func (t MyTransport) RoundTrip(r *Request) (*Response, error){
        resp, err := http.DefaultTransport.RoundTrip(r)
        resp.Header = t.header
        return resp, err
    }
    mytransport := MyTransport{
    //construct Header
    }
    proxy := httputil.ReverseProxy{Director: func(r *http.Request) {
        r.Header = http.Header{} // Don't send client's request headers to Amazon.
        r.URL = proxyURL
        r.Host = proxyURL.Host
      },
      Transport: mytransport,
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?