gpt4 book ai didi

http - 发送 POST 请求时出现意外的 EOF

转载 作者:IT王子 更新时间:2023-10-29 02:34:51 59 4
gpt4 key购买 nike

我在使用 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没有 body 。

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

最佳答案

您的 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"}})

关于http - 发送 POST 请求时出现意外的 EOF,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10953933/

59 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com