postmanlabs / postman-app-support

Postman is an API platform for building and using APIs. Postman simplifies each step of the API lifecycle and streamlines collaboration so you can create better APIs—faster.
https://www.postman.com
5.84k stars 839 forks source link

Please support SameSite / Secure #10194

Open dtturcotte opened 3 years ago

dtturcotte commented 3 years ago

Is there an existing request for this feature?

Is your feature request related to a problem?

This is what SameSite is: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie/SameSite

It says that Postman doesn't support it: https://support.postman.com/hc/en-us/articles/115003703065-What-cookie-properties-aren-t-supported- image.gif

For example, making a request to my NodeJS API:

I need to send back the following Cookie:

res.cookie('token', token.id, {
    sameSite: 'none',
    secure: true
});

Postman does not support these sameSite and secure options and I really need it to.

Describe the solution you'd like

I need Postman to support it because the web has changed and I need to support SameSite on my server for my client applications, but Postman doesn't store the cookie because I'm using SameSite for my web applications and Postman doesn't support SameSite.

Describe alternatives you've considered

No response

Additional context

No response

numaga94 commented 2 years ago

this feature is still missing in version 9.14.7!!!