curl cookie格式

獲取cookie: curl -c cookie www.douban.com 查看cookie的內容以下:html

.douban.com	TRUE	/	FALSE	1485507337	bid	"WASIURtSGKN"
.douban.com	TRUE	/	FALSE	1485507337	ll	"215287"

chromium裏面的cookie是這樣的:安全

豆瓣cookie示例

共有用TAB分隔的7個字段, 這7個字段分別是: domain, tailmatch, path, secure, expires, name, value.服務器

  • domain 域名
  • tailmatch 尾部匹配

When searching the cookie list for valid cookies, a comparison of the domain attributes of the cookie is made with the Internet domain name of the host from which the URL will be fetched. If there is a tail match, then the cookie will go through path matching to see if it should be sent. "Tail matching" means that domain attribute is matched against the tail of the fully qualified domain name of the host. A domain attribute of "acme.com" would match host names "anvil.acme.com" as well as "shipping.crate.acme.com". cookie

  • path 路徑
  • secure 安全

若是置爲TRUE, 則只有當一個請求經過 SSL 或 HTTPS 建立時,cookie 才能被髮送至服務器dom

  • expire 過時時間
  • name 名
  • value 值

參考:curl

1 2 3fetch

相關文章
相關標籤/搜索