File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -3055,6 +3055,12 @@ components:
3055
3055
# This demonstrates that the text is required to be provided
3056
3056
# in the final format, and is not changed by serialization.
3057
3057
# In practice, it is not necessary to show both value fields.
3058
+ # Note that only the comma (%2C) would need to be percent-encoded
3059
+ # if percent-encoding were only being done to make the value
3060
+ # a valid cookie, as space (%20) and the exclamation point (%21)
3061
+ # are allowed in cookies, but not in URLs. See the cookie
3062
+ # input parameter examples for an example of encoding only
3063
+ # what is needed for the cookie syntax.
3058
3064
dataValue : |
3059
3065
lang=en-US; Expires=Wed, 09 Jun 2021 10:18:14 GMT
3060
3066
foo=bar; Expires=Wed, 09 Jun 2021 10:18:14 GMT
@@ -3097,6 +3103,7 @@ In an HTTP message, the serialized example would look like:
3097
3103
` ` ` http
3098
3104
Set-Cookie : lang=en-US; Expires=Wed, 09 Jun 2021 10:18:14 GM
3099
3105
Set-Cookie : foo=bar; Expires=Wed, 09 Jun 2021 10:18:14 GMT
3106
+ Set-Cookie : urlSafeData=Hello%2C%20world%21
3100
3107
` ` `
3101
3108
3102
3109
##### Header Object Example
You can’t perform that action at this time.
0 commit comments