79744443

Date: 2025-08-23 16:56:00
Score: 1
Natty:
Report link

For those using cookies like me:

Click on cookies:

ss

Then add your jwt:

enter image description here


How to get the jwt token
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:

enter image description here

Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Shub