如何转储 HTTP GET 请求的响应并将其写入 http.ResponseWriter
How to dump a response of an HTTP GET request and write it in 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 首页。有什么办法可以实现类似代理的效果吗?
将 headers、状态和响应 body 复制到响应作者:
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
中写入完全相同的响应。这是我的代码:
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 首页。有什么办法可以实现类似代理的效果吗?
将 headers、状态和响应 body 复制到响应作者:
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 可能会有帮助。