Chris Russell

Results 1 comments of Chris Russell

I had this problem. The fix was to add the express-session secret into the cookie parser. problem solved. So the fix for above would be: app.use(cookieParser('foo')); app.use(expressSession({ secret : 'foo',...