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
When using Emulation.Chrome145, cookies are sent as a single concatenated cookie header:
cookie: a=1; b=2; c=3
But real Chrome in HTTP/2 sends each cookie as a separate header field:
cookie: a=1
cookie: b=2
cookie: c=3
I tried using cookie_provider=rnet.Jar(compression=True) instead of cookie_store=True but the behavior is the same. Is there any way to achieve per-cookie headers in HTTP/2 to properly emulate Chrome's behavior?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
When using
Emulation.Chrome145, cookies are sent as a single concatenatedcookieheader:cookie: a=1; b=2; c=3
But real Chrome in HTTP/2 sends each cookie as a separate header field:
cookie: a=1
cookie: b=2
cookie: c=3
I tried using
cookie_provider=rnet.Jar(compression=True)instead ofcookie_store=Truebut the behavior is the same. Is there any way to achieve per-cookie headers in HTTP/2 to properly emulate Chrome's behavior?Beta Was this translation helpful? Give feedback.
All reactions