标签:port nav printf 请求头 nic user htm defer os x
http客户端
package main
import (
"fmt"
"net/http"
"net/http/httputil"
)
func main() {
resp, err := http.Get("https://pythonav.com")
if err != nil {
panic(err)
}
defer resp.Body.Close() //关闭连接
s, err := httputil.DumpResponse(resp, true)
if err != nil {
panic(err)
}
fmt.Printf("%s\n", s)
}
客户端添加请求头
package main
import (
"fmt"
"net/http"
"net/http/httputil"
)
func main() {
request, err := http.NewRequest(http.MethodGet, "http://www.pythonav.com", nil)
//请求头添加
request.Header.Add("User-Agent",
"Mozilla/5.0 (iPhone; CPU iPhone OS 10_3 like Mac OS X) "+
"AppleWebKit/602.1.50 (KHTML, like Gecko) CriOS/56.0.2924.75 Mobile/14E5239e Safari/602.1")
client := http.Client{
//代理服务器
CheckRedirect: func(req *http.Request, via []*http.Request) error {
fmt.Println("Redirect:", req)
return nil
},
}
resp, err := client.Do(request)
if err != nil {
panic(err)
}
defer resp.Body.Close()
//
s, err := httputil.DumpResponse(resp, true)
if err != nil {
panic(err)
}
fmt.Printf("%s\n", s)
}
爬虫常用
bufio log encoding/json time regexp strings/math/rand
godoc -http :8000
https://studygolang.com/pkgdoc
标签:port nav printf 请求头 nic user htm defer os x
原文地址:https://www.cnblogs.com/open-yang/p/11256945.html