Skip to content

Instantly share code, notes, and snippets.

@azizulhakim
Created October 29, 2016 04:09
Show Gist options
  • Save azizulhakim/8ac0268d6a3dfa41e88083655c80016e to your computer and use it in GitHub Desktop.
Save azizulhakim/8ac0268d6a3dfa41e88083655c80016e to your computer and use it in GitHub Desktop.
app.get('/auth/facebook', passport.authenticate('facebook', { scope : 'email' }));
app.get('/auth/facebook/callback', passport.authenticate('facebook', {
successRedirect : '/dashboard',
failureRedirect : '/'
}));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment