Passport authentication callback hangs
问题 After hours trying to solve this by myself I reach to SO community looking for some light. I'm using passport for user authentication. It's already initialized in my main express.js file as per the docs: app.use(passport.initialize()); I got a index.js file which handles facebook-passport in this manner: Index.js 'use strict'; import express from 'express'; import passport from 'passport'; import auth from '../auth.service'; let router = express.Router(); //this function is defined in the