通常、ブラウザはCookieを次のCookie
ような単一のヘッダーにグループ化します。
Cookie: a=1; b=2
標準では、これらを次のような個別のヘッダーとして送信できますか?
Cookie: a=1
Cookie: b=2
または、彼らは常に同じ線上にいる必要がありますか?
回答:
トピックの詳細を探しながら、このページを変更しました。RFC 6265からの引用はHTTP State Management Mechanism
、物事をより明確にするはずです:
5.4。Cookieヘッダー
ユーザーエージェントがHTTPリクエストを生成するとき、ユーザーエージェントは複数のCookieヘッダーフィールドを添付してはなりません(MUST NOT)。
これは、複数の使用のように見えるCookie
ヘッダがされ、実際には、禁止します!
Set-Cookie
ヘッダーで応答できることに注意してください:tools.ietf.org/html/rfc6265#page-7
Set-Cookie:a=b;c=d;
Set-Cookie:a=b; Set-Cookie:c=d;
HTTP / 2(RFC 7540)で許可されるようになりました。
8.1.2.5. Compressing the Cookie Header Field
The Cookie header field [COOKIE] uses a semi-colon (";") to delimit
cookie-pairs (or "crumbs"). This header field doesn't follow the
list construction rules in HTTP (see [RFC7230], Section 3.2.2), which
prevents cookie-pairs from being separated into different name-value
pairs. This can significantly reduce compression efficiency as
individual cookie-pairs are updated.
To allow for better compression efficiency, the Cookie header field
MAY be split into separate header fields, each with one or more
cookie-pairs. If there are multiple Cookie header fields after
decompression, these MUST be concatenated into a single octet string
using the two-octet delimiter of 0x3B, 0x20 (the ASCII string "; ")
before being passed into a non-HTTP/2 context, such as an HTTP/1.1
connection, or a generic HTTP server application.
Therefore, the following two lists of Cookie header fields are
semantically equivalent.
cookie: a=b; c=d; e=f
cookie: a=b
cookie: c=d
cookie: e=f