如何转储HTTP GET请求的响应并将其写入http.ResponseWriter
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何转储HTTP GET请求的响应并将其写入http.ResponseWriter相关的知识,希望对你有一定的参考价值。
我试图这样做来转储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首页。有没有办法可以实现类似代理的效果?
答案
将标题,状态和响应正文复制到响应编写器:
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可能会有所帮助。
以上是关于如何转储HTTP GET请求的响应并将其写入http.ResponseWriter的主要内容,如果未能解决你的问题,请参考以下文章
新手求助,Arduino联网后,如何回应HttpClient的GET请求