Skip to content

Instantly share code, notes, and snippets.

@kerin
Created November 3, 2015 14:52
Show Gist options
  • Save kerin/951f5a7bf1fb2473624a to your computer and use it in GitHub Desktop.
Save kerin/951f5a7bf1fb2473624a to your computer and use it in GitHub Desktop.
router.get('/login', function(req, res, next){
passport.authenticate('auth0', {
state: req.query.target
}, function(req, res){
res.redirect(req.query.state)
})(req, res, next);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment