Yiğit Ceylan
Results
1
comments of
Yiğit Ceylan
``` passport.use(new FacebookStrategy({ clientID: process.env.FB_APP_ID, clientSecret: process.env.FB_APP_SECRET, callbackURL: "http://localhost:3000/auth/facebook/callback", profileFields: ["email"] }, function(accessToken, refreshToken, profile, cb) { User.findOrCreate({ facebookId: profile.id, email: profile.emails[0].value }, function (err, user) { return cb(err, user);...