You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A <cookie-value> can optionally be wrapped in double quotes and include any US-ASCII
characters excluding control characters, Whitespace, double quotes, comma, semicolon,
and backslash. Encoding: Many implementations perform URL encoding on cookie values,
however it is not required per the RFC specification. It does help satisfying the requirements
about which characters are allowed for <cookie-value> though.
So for instance, '.' (ascii single dot) should be accepted by Hurl.
The following Hurl file should be valid:
GET https://localhost:3443/api/mobile/options/ebill
[Cookies]
JSESSIONID: node0cxdeb15mm31e1oyoxzo2wcnn40.node0
HTTP/1.1 200
In the Hurl grammar, cookie value is defined as:
In the MDN, cookie value is defined as:
So for instance, '.' (ascii single dot) should be accepted by Hurl.
The following Hurl file should be valid:
Actually, Hurl raises an error:
The text was updated successfully, but these errors were encountered: