Make a cookie immutable #3517
Unanswered
fabiosantoscode
asked this question in
Ideas
Replies: 1 comment
|
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Is your feature request related to a problem? Please describe.
Whenever I'm talking to a backend I'm working with, and there's anything wrong with auth, it clears the session cookie. This is good behaviour I don't wish to change. The problem is, every time something wrong happens with auth, I have to go and manually set the session cookie again in the cookie screen.
Describe the solution you'd like
I would like to make my session cookie immutable, such that the server can't modify it. Instead only I can modify this cookie, manually or through a plugin.
Describe alternatives you've considered
My first idea was to add a
Cookie=header to every request, which almost worked, but it prevents other cookies from being sent and managed by insomnia.Additional context
This is what my backend does to my precious cookie:
All reactions