passport icon indicating copy to clipboard operation
passport copied to clipboard

Simple, unobtrusive authentication for Node.js.

Results 159 passport issues
Sort by recently updated
recently updated
newest added

Support for [lambda-api](https://github.com/jeremydaly/lambda-api), currently redirects are not working, due to lack of methods in this library. ### Checklist - [x] I have read the [CONTRIBUTING](https://github.com/jaredhanson/passport/blob/master/CONTRIBUTING.md) guidelines. - [x] I have...

The `req.logout` method doesn't seem to delete the session values when invoked. I'm using `passport-local` and `cookie-session`, with Express. It looks like similar issues are discussed on [StackOverflow](http://stackoverflow.com/questions/13758207/why-is-passportjs-in-node-not-removing-session-on-logout). Any ideas...

**req.isAuthenticated() is returning false even after authenticating with AWS cognito.** **The function which I am using for adding login routes is:** ``` addAuthenticationRoutesCognito: function (app) { app.use(passport.initialize()); app.use(passport.session()); app.use(function (req,...

authenticate function hangs in POST requests on NodeJS v14.x. When I downgrade to v12.x or when I call function inside GET request handler it works as it should. I've only...

This pull request adds a new strategy augmentation similar to `strategy.pass()` and `strategy.fail()` that is intended to support challenge / response type authentication protocols as mentioned in #488 . The...

enhancement

I'm writing a passport strategy for [W3C WebAuthn](http://w3c.github.io/webauthn/), which does away with passwords in favor of using a cryptographic challenge / response. The basic algorithm is that the server is...

enhancement

I have been trying to wrap my head around this issue for a while. from what I have been reading passport.authorize() shouldn't clear current session. Strategies ```js exports.SteamStrategy = new...

Hi there. Updating to 0.6.0, I ran into the problem that req.logout() changed. It now needs a done callback. Unfortunately the documentation does not state this. Greets Nils

documentation

I've spent 4 hours scrolling through all SO posts about req.isAuthenticated() giving false always and then realizing that my `session.passport` lacks `user` itself and then figuring out that it appears...