如何转储HTTP GET请求的响应并将其写入http.ResponseWriter

时间:2016-12-24 14:06:34

标签: go proxy http-proxy

我正在尝试转储HTTP GET请求的响应并在http.ResponseWriter中写入相同的响应。这是我的代码:

package main

import (
    "net/http"
    "net/http/httputil"
)

func handler(w http.ResponseWriter, r *http.Request) {
    resp, _ := http.Get("http://google.com")
    dump, _ := httputil.DumpResponse(resp,true)
    w.Write(dump)
}

func main() {
    http.HandleFunc("/", handler)
    http.ListenAndServe(":8080", nil)
}

我获得了整整一页的google.com HTML代码,而不是Google首页。有没有办法可以实现类似代理的效果?

1 个答案:

答案 0 :(得分:4)

将标题,状态和响应正文复制到响应编写器:

resp, err :=http.Get("http://google.com")
if err != nil {
    // handle error
}
defer resp.Body.Close()

// headers

for name, values := range resp.Header {
    w.Header()[name] = values
}

// status (must come after setting headers and before copying body)

w.WriteHeader(resp.StatusCode)

// body

io.Copy(w, resp.Body)

如果您要创建代理服务器,那么net/http/httputil ReverseProxy type可能会有所帮助。