I'm trying to check for cookies in node.js using cookie-parser and express. I have a simple route:
router.get('/', function(req,res){
console.log("Cookies: ", req.cookies);
});
If I run http://localhost:3000/ in postman I get back {}. But if it put the same url into the address bar of my browser I get back the cookies I'm looking for. Any idea what I'm doing wrong?