獲取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是這樣的:安全
共有用TAB分隔的7個字段, 這7個字段分別是: domain, tailmatch, path, secure, expires, name, value.
服務器
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
若是置爲TRUE, 則只有當一個請求經過 SSL 或 HTTPS 建立時,cookie 才能被髮送至服務器dom
參考:curl