manish Kumar Hemani
manish Kumar Hemani
To add my token with session in redis , I wrore below code. req.jwtSession.user = user.toJSON(); ``` // Manish-this will be attached to the JWT Redis var claims = {...
In can see in "Redis Desktop manager" that session is available, I am just doing login and immediately logout. console.log-- after login Request JWT session data: { create: [Function], touch:...
yes, I am passing jwt token with each request using interceptor at client side I am also verifying all client request using server side with a additional middleware app.all('/api/v1/auth/*', auth.isAuthenticated());...