douwen4401 2014-07-04 15:33
浏览 267
已采纳

如何在Golang中获取http重定向状态代码

I'd like to log 301s vs 302s but can't see a way to read the response status code in Client.Do, Get, doFollowingRedirects, CheckRedirect. Will I have to implement redirection myself to achieve this?

  • 写回答

1条回答 默认 最新

  • dongzhucha3999 2014-07-05 02:36
    关注

    The http.Client type allows you to specify a custom transport, which should allow you to do what you're after. Something like the following should do:

    type LogRedirects struct {
        Transport http.RoundTripper
    }
    
    func (l LogRedirects) RoundTrip(req *http.Request) (resp *http.Response, err error) {
        t := l.Transport
        if t == nil {
            t = http.DefaultTransport
        }
        resp, err = t.RoundTrip(req)
        if err != nil {
            return
        }
        switch resp.StatusCode {
        case http.StatusMovedPermanently, http.StatusFound, http.StatusSeeOther, http.StatusTemporaryRedirect:
            log.Println("Request for", req.URL, "redirected with status", resp.StatusCode)
        }
        return
    }
    

    (you could simplify this a little if you only support chaining to the default transport).

    You can then create a client using this transport, and any redirects should be logged:

    client := &http.Client{Transport: LogRedirects{}}
    

    Here is a full example you can experiment with: http://play.golang.org/p/8uf8Cn31HC

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 乘性高斯噪声在深度学习网络中的应用
  • ¥15 运筹学排序问题中的在线排序
  • ¥15 关于docker部署flink集成hadoop的yarn,请教个问题 flink启动yarn-session.sh连不上hadoop,这个整了好几天一直不行,求帮忙看一下怎么解决
  • ¥30 求一段fortran代码用IVF编译运行的结果
  • ¥15 深度学习根据CNN网络模型,搭建BP模型并训练MNIST数据集
  • ¥15 C++ 头文件/宏冲突问题解决
  • ¥15 用comsol模拟大气湍流通过底部加热(温度不同)的腔体
  • ¥50 安卓adb backup备份子用户应用数据失败
  • ¥20 有人能用聚类分析帮我分析一下文本内容嘛
  • ¥30 python代码,帮调试,帮帮忙吧