1

我在使用 http 包发送简单的 POST 请求时遇到了一些问题:

var http_client http.Client

req, err := http.NewRequest("POST", "http://login.blah", nil)
if err != nil {
  return errors.New("Error creating login request: " + err.Error())
}
req.Header.Add("Content-Type", "application/x-www-form-urlencoded")
body := fmt.Sprintf("?username=%s&password=%s&version=%d", client.Username, client.Password, launcherVersion)
fmt.Println("Body:", body)
req.Body = ioutil.NopCloser(bytes.NewBufferString(body))
req.ParseForm()
resp, err := http_client.Do(req)

if err != nil {
  return errors.New("Error sending login request: " + err.Error())
}

我从印刷品中看到了正确的主体:

Body: ?username=test&password=test&version=13

但 60 秒后,我得到:

Error sending login request: unexpected EOF

我确信这与我如何设置请求正文有关,因为使用 Wireshark 观看它会向我显示请求,该请求立即发出,Content-Length没有正文的值为 0。

POST / HTTP/1.1
Host: login.blah
User-Agent: Go http package
Content-Length: 0
Content-Type: application/x-www-form-urlencoded
Accept-Encoding: gzip
4

1 回答 1

3

您的body字符串看起来像是 URL 的结尾,就像您在 GET 请求中发送参数一样。

服务器可能希望您的 POST 请求的主体采用http://www.w3.org/TR/html401/interact/forms.html#form-data-set中定义的 multipart/form-data 格式

我认为你应该要么

  • 使用multipart.Writer来构建你的身体。

  • 在包示例中使用PostForm :

    resp, err := http.PostForm("http://example.com/form",
        url.Values{"key": {"Value"}, "id": {"123"}})
    
于 2012-06-08T19:55:33.140 回答