doukuipei9938 2016-11-28 19:09
浏览 393
已采纳

Golang HTTP响应错误可能是什么?

As in many golang net/http articles, a request returns two values: response and error:

resp, err := http.Get("http://example.com/")
if err != nil {
    // handle error
}
defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body)

For http-related errors, it will be returned in resp with status code like 502, 400 etc. What are the possible errors returned? I need to know them before I can handle them.

  • 写回答

3条回答 默认 最新

  • doue2666 2016-11-28 19:26
    关注
    1. URL parse error
    2. too much redirect times
    3. tcp connect\writeead timeout
    4. 302 status, but null Location header

    and so on

    You can read the source code in http package. Then you can find all the errors returned by this function http.Get.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部