I have 2 opened tab in Postman. One tab calls login API, second calls protected page. If I call the second tab without calling the first I get "Bad request":
but I call the first before with valid credentials:
and the call the second again, then I get protected page:
Where is it and how to get it to set inside my application?
Cookies saved by postman can be viewed by clicking cookies button under Send button.
Refer this
Postman uses a javascript engine based on node js, so cookies are saved in the regular way nodejs does.
About how to use the cookies inside postman, you can use them like this:
console.log(postman.getResponseCookie('cookie name').value);
Here you can find an example of how to manipulate cookies using postman.
If you only want to inspect the cookies you can use the cookie manager.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With