Jared Hanson
Jared Hanson
To clarify: > The first one assigns a client object to req.user while the second one assigns a user object. Not consistent. Why is that a problem? A route that...
Yeah! This has been on my mind for a bit, and I want to get good support for this implemented. Right now my top priority is additional API support (for...
@bmeck Ping. I've wrapped up API support (along with separate OAuth 1.0 and 2.0 middleware), so I'm starting to plan out the next features to implement. Would like to get...
To facilitate a discussion of what the best approach to this is, could you link to a strategy that uses this proposed capability? Sent from my iPhone > On May...
I'm reviving this thread with a comment on the original issue: https://github.com/jaredhanson/passport/issues/488#issuecomment-1148788018 Please send me your feedback by continuing the discussion there. Thanks!
Could you post some links to providers that have such APIs (and the docs for those APIs). It'd be great to have strategies for this. Two strategies I'm aware of...
Cool, thanks for the info. I'll investigate this further and see how it can be implemented as a strategy.
What benefits would promises offer an application built on Express, using the middleware pattern? For example, passport is used via middleware like: ``` app.post('/login', passport.authenticate('local')); ``` Why does that need...
Are you referring to `done` as needed in `verify` callbacks?
Thanks for the report. My intent here is to make the session manager pluggable (it is already by setting `passport._sm`, but will add a public method in a future release)....