nameeshgabru
Results
1
comments of
nameeshgabru
For me the problem was with final req handler, res.redirect('#/after-auth'); was casing this error. ``` router.get('/google/callback', passport.authenticate('google', { failureRedirect: '/login' }), function (req, res) { res.redirect('#/after-auth'); } ); ``` changing...