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
There is an option to add headers to the request or the response in the Proxy Handler, but is there a way to edit a header? For example, I want to edit the Set-Cookie header in the response to add "SameSite=none; Secure", but I don't want to lose the information in the cookie (i.e.Session ID).
Before Set-Cookie: JSESSIONID=SOMEDATA
After Set-Cookie: JSESSIONID=SOMEDATA; SameSite=none; Secure
Is it possible to do this with the current version? or is it needed to code a new feature?
I appreciate your help.
The text was updated successfully, but these errors were encountered:
@enrique-quinteros at this moment it is not possible for regular expressions to be placed on headers (opposed to rewriting the URLs). So that would be a new feature.
There is an option to add headers to the request or the response in the Proxy Handler, but is there a way to edit a header? For example, I want to edit the Set-Cookie header in the response to add "SameSite=none; Secure", but I don't want to lose the information in the cookie (i.e.Session ID).
Before
Set-Cookie: JSESSIONID=SOMEDATA
After
Set-Cookie: JSESSIONID=SOMEDATA; SameSite=none; Secure
Is it possible to do this with the current version? or is it needed to code a new feature?
I appreciate your help.
The text was updated successfully, but these errors were encountered: