我正在尝试使用 BasicAuth 执行简单的 HTTP 获取。问题是响应不断返回“404”,即使我可以将 URL 复制并粘贴到命令行 cURL 请求中并且它工作正常:
const url string = "http://1.2.3.4:6710/REST/command"
const username string = "..."
const password string = "..."
fmt.Printf("\n%v\n", url)
client := &http.Client{}
req, _ := http.NewRequest("GET", url, nil)
req.SetBasicAuth(username, password)
req.Proto = "HTTP/1.0"
req.ProtoMinor = 0
resp, _ := client.Do(req)
fmt.Printf("\n%v\n", resp)
defer resp.Body.Close()
body, _ := ioutil.ReadAll(resp.Body)
fmt.Printf("\n%v\n\n", string(body))
因此,您可以看到我正在url
立即打印出我的 - 这是同一行文本,如果我将其复制到命令行 cURL 请求中,则一切正常。
我的请求响应是
&{404 Not Found 404 HTTP/1.0 1 0 map[Pragma:[no-cache] Date:[Wed, 17 Apr 2013 15:01:33 GMT] Connection:[close] Server:[MoneyWorks_Datacentre/6.1.3 Win-x86 REST/6.1.3] Cache-Control:[no-store, no-cache, must-revalidate] Expires:[Wed, 17 Apr 2013 15:01:33 GMT]] 0xf8400e3920 -1 [] true map[] 0xf8400aa000}
golang 的 HTTP 函数有什么独特之处与 cURL 处理如此简单的请求的方式不同吗?
编辑:我通过将 URL 传递给exec.Command("curl", url).Output()
. 显然这不是我希望的本机解决方案,但它现在有效。