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

OAuth 1.0 and 2.0 authentication strategies for Passport and Node.js.

Results 7 passport-oauth issues
Sort by recently updated
recently updated
newest added

Is there any `@types` for this?

Adding custom headers does nothing to the generated authorization URL: ``` passport.use("office365", new OAuth2Strategy({ "authorizationURL": "https://login.microsoftonline.com/common/oauth2/authorize", "tokenURL": "https://login.microsoftonline.com/common/oauth2/token", "clientID": "b6c8879b-5c72-43d3-b82d-3d8a7252f3b1", ... "callbackURL": "http://localhost:3000/auth/provider/callback", "customHeaders": { "resource": "https://login.microsoftonline.com/common" } }); ```

We are using WP Oauth Server and Passport-Oauth2-Complete-for-Wordpress and we are constantly running into this issue no matter what settings are chosen on WP Oauth Server. It is returned as...

I configured my OAuth1 Strategy just like the following example and edited the inside of the `verify` callback to print more information: ``` js passport.use(new OAuth1Strategy({ requestTokenURL: 'https://www.example.com/oauth/request_token', accessTokenURL: 'https://www.example.com/oauth/access_token',...

Trying to follow every single guide or walkthrough on this, I could not found where I set the URL for the "get data/profile" step. I'm using this module to connect...

I created a class that inherits from one of the predefined Passport strategy (OAuth2 from passport-oauth) to be able to add some specific code. I ran into an issue with...

Certain Google+ OAuth flows make use of a callbackURL of `postmessage`, which is really just a string token. It should not be treated as a URL. This change introduces a...