最佳答案
我在Go中做一个简单的http GET:
client := &http.Client{}
req, _ := http.NewRequest("GET", url, nil)
res, _ := client.Do(req)
但是我找不到自定义医生中的请求头的方法,谢谢