I am testing my API in Postman and am having problems simulating output .
If I make a call to delete a session cookie, 
The session cookie is still there , and I can still access routes that require authentication.
The route handler on the server:
server.route({ method: 'DELETE', path: '/sessions/_current', handler: function(req, reply){ req.auth.session.clear(); reply({}).code(204); } });
This is Node.js with Hapi, but it does not matter.
Is there a way to delete all cookies in Postman or certain cookies manually ?
postman
Nelu Feb 03 '15 at 17:39 2015-02-03 17:39
source share