passport
passport copied to clipboard
Simple, unobtrusive authentication for Node.js.
** READ THIS FIRST! ** #### Are you implementing a new feature? Requests for new features should first be discussed on the [developer forum](https://github.com/passport/develop). This allows the community to gather...
using passport-saml version 3.2.1 after ugrading passportjs from 0.5.3 to 0.6.0 passport authentication throws Error: Request failed with status code 404 saml strategy is also same as I used for...
I'm reading through the code debugging an issue and I note that in `request.js` the `req.logOut` function calls `this._passport.instance._sm.logOut(this)`, which can take a callback parameter, but none is passed. Granted,...
Hello, Thank you for creating this awesome library. I am writing a SailsJS application which uses `passport` and `oauth2orize` to handle API authentication. In my app I would like to...
I'm getting this error in router.get("/googleLogin/success" every time I try to log in using facebook, the router.get("/facebookLogin/success" goes the same, the whole app stope whenever I start logging in using...
Sorry if this has already been discussed (a quick search didn't give any hits). Starting from `0.6.0`, `req.logout` is an asynchronous function and requires a callback function. This is explained...
# Background RE: #904 Using `[email protected]`, `[email protected]` with the `[email protected]` module to login with Github, the application throws the following error message: ``` TypeError: req.session.regenerate is not a function at...
**When I visit the Google oauth authentication page:** ``` app.get('/user/auth/google', (req, res, next) => { passport.authenticate('google', { scope: ['profile', 'email'], })(req, res, next); }); ``` **My passport about Google oauth...
I am getting "Error: failed to deserialize user out of session" - the problem is that this generates 500 server error and I can't present a nice page to the...
Hello , I have a problem regarding my login application , im using passport-local strategy to authenticate users but the problem is that only one user session is created at...