我正在开发一个带有 Go 的小型站点,并且正在尝试从我的服务器设置一个 cookie。
我在 localhost 上运行服务器, 127.0.0.1 别名为subdomain-dev.domain.com
on port 5080
。
我的当我收到我的回复时,我POST
可以subdomain-dev.domain.com:5080/login
看到标题set-cookie
。响应如下所示:
HTTP/1.1 307 Temporary Redirect
Location: /
Set-Cookie: myappcookie=encryptedvalue==; Path=/; Expires=Fri, 13 Sep 2013 21:12:12 UTC; Max-Age=900; HttpOnly; Secure
Content-Type: text/plain; charset=utf-8
Content-Length: 0
Date: Fri, 13 Sep 2013 20:57:12 GMT
为什么 Chrome 或 Firefox 不记录这个?在 Chrome 中,它不会显示在“资源”选项卡中。在FF我也看不到。而且我在未来的请求标头中也看不到它。