Skip to content

Instantly share code, notes, and snippets.

@anabellaspinelli
Last active September 24, 2018 09:22
Show Gist options
  • Save anabellaspinelli/2c0c33a9a97263d92c73b052f6fde316 to your computer and use it in GitHub Desktop.
Save anabellaspinelli/2c0c33a9a97263d92c73b052f6fde316 to your computer and use it in GitHub Desktop.
Handling callback with PassportJS
app.get(
'/auth/typeform/redirect',
passport.authenticate('typeform'),
(req, res) => {
res.send(req.user)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment