Lägg till en rutthanterare till alla slutpunkter som behöver verifieras och importera den där det behövs.https://expressjs .com/en/guide/routing.html
ex.
router.post('/login', verify.isAdmin, (req, res, next) => {
//do something
})
//verifiera funktion i separat fil
module.exports = {
isAdmin: (req, res, next) =>{
if(req.user.admin){
next();
}else{
res.status(403).send();
}
}
}
Fullständiga kodexempel:
https://medium.freecodecamp .org/securing-node-js-restful-apis-with-json-web-tokens-9f811a92bb52