Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to disable cookies in Postman Application

Tags:

I'm using Postman application to test APIs in Ubuntu 16.04.

I don't need Postman to store cookies after API request. I only find options to delete cookies manually for each request. Does anyone know how to completely disable it?

like image 936
Vinoth Kumar Avatar asked Mar 27 '18 10:03

Vinoth Kumar


People also ask

Where can I find Postman cookies?

To start the work on cookies in postman, open the Cookies option from the right side of the postman window under the Send button. When you select cookies, then it will open the Manage Cookies window. Here you can see the domains list and cookies linked with them.

How do you intercept cookies with Postman?

Go to the Via Interceptor tab of the Capture requests window. Select Capture Cookies if you want to capture cookies in addition to requests during the debug session. You can use these cookies in your Postman requests. You can also capture cookies and sync them to Postman without starting a debug session.


1 Answers

Go to "settings" tab and disable "cookie jar" and "follow redirects".

Thus, Postman will act as fetch in node-js for instance. It will acts as it is the first attempt to login (or whatever) and you'll see a fresh response every time.

like image 165
Alexandre Palo Avatar answered Sep 20 '22 15:09

Alexandre Palo