gpt4 book ai didi

http - 使用 Go http 客户端的意外 EOF

转载 作者:IT老高 更新时间:2023-10-28 13:10:51 25 4
gpt4 key购买 nike

我正在学习 Go 并遇到了这个问题。

我只是使用 HTTP 客户端下载网页内容:

package main

import (
"fmt"
"io/ioutil"
"log"
"net/http"
)

func main() {
client := &http.Client{}

req, err := http.NewRequest("GET", "https://mail.ru/", nil)
req.Close = true

response, err := client.Do(req)
if err != nil {
log.Fatal(err)
}

defer response.Body.Close()

content, err := ioutil.ReadAll(response.Body)
if err != nil {
fmt.Println(err)
}

fmt.Println(string(content)[:100])
}

我在读取响应正文时收到 unexpected EOF 错误。同时内容变量具有整页内容。

此错误仅在我下载 https://mail.ru/ 内容时出现。使用其他 URL 一切正常 - 没有任何错误。

我使用 curl 下载此页面内容 - 一切正常。

我有点困惑 - 这里发生了什么?

Go v1.2,在 Ubuntu 和 MacOS X 上试用

最佳答案

看起来该服务器(Apache 1.3,哇!)正在提供截断的 gzip 响应。如果您明确请求 identity 编码(阻止 Go 传输添加 gzip 本身),您将不会得到 ErrUnexpectedEOF:

req.Header.Add("Accept-Encoding", "identity")

关于http - 使用 Go http 客户端的意外 EOF,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21147562/

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