Here is my setup with express-jwt
:
exports.requireSignin = expressJwt({
secret: process.env.JWT_SECRET,
algorithms: ["HS256"],
userProperty: "auth"
});
I am using it access a secret route for testing but however i am not getting the req.user
property in my route here. It results in a empty object(undefined).
router.get("/secret",requireSignin,(req, res) => {
res.json({
message: req.user,
});
});
I am using Postman to test and sending the token with the authorization header as a bearer token.
You are not verifying/decoding your JWT token from request, once decoded, assign it
req
object and callnext()
ohhhh, you're using
express-jwt
package. I didn't see at first my answer is general with how to get token payload object in thereq
. Hope it can help someone in future.