-
Notifications
You must be signed in to change notification settings - Fork 9.1k
Open
Labels
headersparam serializationIssues related to parameter and/or header serializationIssues related to parameter and/or header serialization
Milestone
Description
Is it possible to have multiple 'Set-Cookie' headers in one response? As is known there are two ways to set cookies header in the response:
- Having separated headers
- Folding into 1 header and using comma separated
The later way however is deprecated in (RFC6265)[http://www.rfc-editor.org/rfc/rfc6265.txt] and not supported by some latest browsers.
Origin servers SHOULD NOT fold multiple Set-Cookie header fields into
a single header field. The usual mechanism for folding HTTP headers
fields (i.e., as defined in [RFC2616]) might change the semantics of
the Set-Cookie header field because the %x2C (",") character is used
by Set-Cookie in a way that conflicts with such folding.
So that below can be valid:
responses:
200:
description: "Response with content"
headers:
Set-Cookie:
type: String
description: "eg. key1=value1"
Set-Cookie:
type: String
description: "eg. key2=value2"
mikestead, mikejav, oleynikandrey, lezhnev74, egel and 6 more
Metadata
Metadata
Assignees
Labels
headersparam serializationIssues related to parameter and/or header serializationIssues related to parameter and/or header serialization