marcin_warzybok
Results
2
issues of
marcin_warzybok
``` router.route('/auth/facebook') .post(passport.authenticate('facebook-token', {session: false}), function(req, res, next) { if (!req.user) { return res.send(401, 'User Not Authenticated'); } // prepare token for API req.auth = { id: req.user.id }; next();...
Hi, i'm getting errors when modify my code (it has a lot of imports, injections etc., so i don't put any code up here). It's probably issue with circular injection...
type: question