For those using cookies like me:
Click on cookies:
Then add your jwt:
function verifyToken(req, res, next) {
console.log(req.cookies) // log it here
const token = req.cookies.jwt
const decoded = jwt.verify(token, JWT_SECRET)
...
next()
}
Click on ⓘ then cookies: