-
Notifications
You must be signed in to change notification settings - Fork 448
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Set-Cookie response headers are grouped #722
Comments
This caused me a few hours of confusion, debugging my code only to found out (using curl) that my code was working fine. This is the problem line:
Additionally, rest-client will not remember the multiple cookies correctly. |
Group Consider the response headers from server as the following: Set-Cookie: key=value; expires=Thu, 03-Aug-2023 12:02:58 GMT; Max-Age=7200; path=/; samesite=lax
Set-Cookie: key2=value2; expires=Thu, 03-Aug-2023 12:02:58 GMT; Max-Age=7200; path=/; samesite=lax There are several special characters in the header value Set-Cookie: key=value; expires=Thu, 03-Aug-2023 12:02:58 GMT; Max-Age=7200; path=/; samesite=lax, key2=value2; expires=Thu, 03-Aug-2023 12:02:58 GMT; Max-Age=7200; path=/; samesite=lax |
I created #1278 to fix this. |
Steps to Reproduce:
Set-Cookies
headers into one as follows;NOTE almost same request from curl...
The text was updated successfully, but these errors were encountered: