passport-oauth2 icon indicating copy to clipboard operation
passport-oauth2 copied to clipboard

OAuth 2.0 authentication strategy for Passport and Node.js.

Results 98 passport-oauth2 issues
Sort by recently updated
recently updated
newest added

If use this strategy with "no Express.js" request object - will work incorrectly. I fix it. Not all frameworks/libs do modify req.query, example Koa2 has only native request object and...

I see there is one option to set proxy. Is it possible to do the follwing in passport-oauth2 ## Steps I would like to add httpsProxyAgent to node-auth. Does the...

This package [depends](https://github.com/jaredhanson/passport-oauth2/blob/master/package.json#L36) on `[email protected]`, however it does not work with lower versions (in particular 0.9.7, see: https://github.com/jaredhanson/passport-github/issues/56). Perhaps the dependency should be updated to reflect this?

This allows other libraries or Passport strategies to leverage these stores as their defaults instead of implementing their own.

I'm on io.js that is run with `--use_strict` parameter. My script fails with the following error when trying to sign in with google OAuth2: ``` Error.captureStackTrace(this, arguments.callee); ^ TypeError: 'caller',...

I couldn't find a description of the available options (neither here, http://passportjs.org/docs/facebook, nor in the code https://github.com/jaredhanson/passport-oauth2/blob/master/lib/strategy.js (line 43-50)) Explicitly the state option is very interesting. And is there a...

Hi, I have a question regarding the token when its successfully retrieved after the user is authorised. I assume the token gets added to the headers? Does it get add...

I had a problem where my client secret had a trailing newline. When the client secret doesn't match, authentication validation on the client side of course fails, but there is...

**Issue** Strategy's loadUserProfile reports a generic error without context to what happened. **Cause** It appears that the first callback argument to [node-oauth's getOAuthAccessToken](https://github.com/jaredhanson/passport-oauth2/blob/master/lib/strategy.js#L173) isn't intended to report back [oauth errors](http://tools.ietf.org/html/draft-ietf-oauth-v2-07#section-5.1.6)...