Multiple Set-cookie headers in HTTP

后端 未结 2 1286
无人及你
无人及你 2021-02-03 21:17

I\'m writing a small class that acts as a very basic HTTP client. As part of a project I\'m working on, I\'m making it cookie aware. However, it\'s unclear to me what happens

2条回答
  •  傲寒
    傲寒 (楼主)
    2021-02-03 21:48

    RFC 6265 section 4.1.2 states:

    If the user agent receives a new cookie with the same cookie-name,
    domain-value, and path-value as a cookie that it has already stored,
    the existing cookie is evicted and replaced with the new cookie.
    Notice that servers can delete cookies by sending the user agent a
    new cookie with an Expires attribute with a value in the past.

    So I would process the headers in order given and overwrite them if there is a duplicate. So in your case you would have just one PHPSESSID=ghi.

提交回复
热议问题