登录
首页 >  Golang >  Go问答

检索HTTP响应的原始标头

来源:stackoverflow

时间:2024-03-13 16:45:29 410浏览 收藏

从现在开始,我们要努力学习啦!今天我给大家带来《检索HTTP响应的原始标头》,感兴趣的朋友请继续看下去吧!下文中的内容我们主要会涉及到等等知识点,如果在阅读本文过程中有遇到不清楚的地方,欢迎留言呀!我们一起讨论,一起学习!

问题内容

如何获取响应的原始标头作为字符串,如下所示:

alt-svc: quic=":443"; ma=2592000; v="44,43,39,35"
cache-control: private, max-age=0
content-encoding: br
content-type: text/html; charset=UTF-8
date: Tue, 08 Jan 2019 06:19:47 GMT
expires: -1
server: gws
set-cookie: 1P_JAR=2019-01-08-06; expires=Thu, 07-Feb-2019 06:19:47 GMT; path=/; domain=.google.com
set-cookie: SIDCC=ABtHo-HHNcja-cEEFEUXtBmLOdql4RTVMCWKGApEFFb8lWSAqaTF_fi0gDLoWaCzH3ogvEofah0; expires=Mon, 08-Apr-2019 06:19:47 GMT; path=/; domain=.google.com; priority=high
status: 200

因为我想从响应标头中获取多个 set-cookie 值。 使用 http.response.header.get("set-cookies") 仅返回最后一行。

或者我怎样才能获得多个cookie?


解决方案


如果您想要原始标头,则需要为 net.Conn 编写一些包装器,该包装器在 http 库解释原始标头之前捕获原始标头。

但是您似乎并不真正需要原始标头,甚至根本不需要完整标头。如果您的目标只是读取多个 cookie,最简单的方法是使用响应中的 Cookies 方法。

这两者之间的中间选项是读取响应的整个 Header 字段。这将呈现完整标头,但不能保证其顺序,并且将完成最少的解析(以删除换行符等),因此不能说这是真正的“原始”。但是,它确实通过将所有标头值存储在 []string 中来保留多个值,以防出现重复标头。因此,就这个问题而言,这应该是完全足够的(尽管如上所述,response.cookies会更容易)。

在我看来,往返响应的最佳选择是 httputil#dumpresponse

package raw

import (
   "bufio"
   "bytes"
   "net/http"
   "net/http/httputil"
)

func encode(res *http.response) ([]byte, error) {
   return httputil.dumpresponse(res, false)
}

func decode(data []byte) (*http.response, error) {
   return http.readresponse(bufio.newreader(bytes.newreader(data)), nil)
}

或者,如果您只想要 cookie,您可以这样做:

package raw

import (
   "encoding/json"
   "net/http"
)

func encode(res *http.response) ([]byte, error) {
   return json.marshal(res.cookies())
}

func decode(data []byte) ([]http.cookie, error) {
   var c []http.cookie
   if e := json.unmarshal(data, &c); e != nil {
      return nil, e
   }
   return c, nil
}

或者对于单个 cookie:

package raw

import (
   "encoding/json"
   "net/http"
)

func encode(res *http.Response, name string) ([]byte, error) {
   for _, c := range res.Cookies() {
      if c.Name == name {
         return json.Marshal(c)
      }
   }
   return nil, http.ErrNoCookie
}

func decode(data []byte) (*http.Cookie, error) {
   c := new(http.Cookie)
   if e := json.Unmarshal(data, c); e != nil {
      return nil, e
   }
   return c, nil
}

https://golang.org/pkg/net/http/httputil#DumpResponse

文中关于的知识介绍,希望对你的学习有所帮助!若是受益匪浅,那就动动鼠标收藏这篇《检索HTTP响应的原始标头》文章吧,也可关注golang学习网公众号了解相关技术文章。

声明:本文转载于:stackoverflow 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>