HTTP Cookie

An HTTP cookie (web cookie, browser cookie) is a small piece of data that a server sends to the user's web browser. The browser may store it and send it back with the next request to the same server. 

Typically, it's used to tell if two requests came from the same browser — keeping a user logged-in.

It remembers stateful information for the stateless HTTP protocol.

 

Cookie attributes

  Domain and path

  Set-Cookie: HSID=AYQEVn…DKrdst; Domain=.foo.com; Path=/; Expires=Wed, 13 Jan 2021 22:23:01 GMT; HttpOnly 

  Expires and Max-Age

  The Expires attribute defines a specific date and time for when the browser should delete the cookie. 
  the Max-Age attribute can be used to set the cookie's expiration as an interval of seconds in the future.
  

  Secure and HttpOnly

  The Secure and HttpOnly attributes do not have associated values. Rather, the presence of just their attribute names indicates that their behaviors should be enabled.

Server -> Client : set-cookie field

  The Set-Cookie HTTP response header sends cookies from the server to the user agent. A simple cookie is set like this:

  Set-Cookie: <cookie-name>=<cookie-value>  

  Set-Cookie: id=a3fWa; Expires=Wed, 21 Oct 2018 07:28:00 GMT;

Client -> Server: Cookie field

  Cookie: name=value; name2=value2; name3=value3

Solution for client browser disabled cookies

  1.URL rewrite

  2.Form submit rewrite.

 

  

 

转载于:https://www.cnblogs.com/full-stack-engineer/p/8372514.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值