Skip to content
Advertisement

Using passport.js with multiple strategies without overwriting user request object

I’m using passport.js local-strategy for auth. I also need users to authenticate with Facebook, Twitter, and G+, but not as auth alternatives, but to enable the user to retrieve their content from those services.

As written, each auth strategy writes a user object to the request object. This has the effect of logging-out my root user. Is there a way to leverage passport for these additional auth strategies, but not override the user object?

Here is the canonical example:

JavaScript

Advertisement

Answer

A way to do this is to use a callback rather than a redirect. Usually you would call req.login() to set the request object. You can just skip that step and do whatever you want with the response.

JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement