获取http的curl

从chrom拉取curl内容

获取http的curl_第1张图片

从go的请求中获取curl

参考文档 https://juejin.cn/post/7111338702583889951

go get github.com/xiao-ren-wu/restgo

func TestGet(t *testing.T) {
	resp, err := restgo.NewHttpBuilder().
		Curl(restgo.ConsolePrint).
		Send(restgo.GET, "https://www.baidu.com/")
	if err != nil {
		t.Fatal(err)
	}
	t.Log(resp.BodyStr())
}

你可能感兴趣的:(chrome)