oauth2orize icon indicating copy to clipboard operation
oauth2orize copied to clipboard

OAuth 2.0 authorization server toolkit for Node.js.

Results 79 oauth2orize issues
Sort by recently updated
recently updated
newest added

I want to access the request object of the token endpoint so that I'll know the request headers accessing it. As shown in this [section](https://github.com/jaredhanson/oauth2orize#implement-token-endpoint): ``` app.post('/token', passport.authenticate(['basic', 'oauth2-client-password'], {...

Hi, I was able to get the auth code but when i call the token api, i get Unauthorised 401 Error, I am passing these values in the url http://localhost:3000/oauth/token?grant_type=authorization_code&code=tncHiOrBZRcvjJQ1&redirect_uri=http://localhost:3000/account&client_id=abc123&client_secret=ssh-secret...

I m having some troubles when trying to implement an oauth2orize server without sessions. Even if I set passport strategy with session:false, oauth2orize throw me an exception telling that I...

### Update outdated `mocha` dev-dependency to fix npm security audit warnings This PR fixes the open issue #240 ### Checklist - [X] I have read the [CONTRIBUTING](https://github.com/jaredhanson/oauth2orize/blob/master/CONTRIBUTING.md) guidelines. - [...

** READ THIS FIRST! ** #### Are you implementing a new feature? No Requests for new features should first be discussed on the [developer forum](https://github.com/jaredhanson/oauth2orize-develop). This allows the community to...

Want to report out of date dependencies. Upgrading Mocha should resolve though. https://david-dm.org/jaredhanson/oauth2orize 3 Dev Dependencies & 1 dependency seem to be out of date. ## NPM AUDIT ``` ===...

Currently it will just throw. ### Checklist - [x] I have read the [CONTRIBUTING](https://github.com/jaredhanson/oauth2orize/blob/master/CONTRIBUTING.md) guidelines. - [ ] I have added test cases which verify the correct operation of this...

Is there a mechanism to send to the redirect_uri some custom query parameters in case of error? (I'm talking about https://localhost:8080/oauth2/authorize/decision endpoint) ### Expected behavior In case there is an...

** READ THIS FIRST! ** #### Are you implementing a new feature? Requests for new features should first be discussed on the [developer forum](https://github.com/jaredhanson/oauth2orize-develop). This allows the community to gather...

use uid-safe instead: Create cryptographically secure UIDs safe for both cookie and URL usage. This is in contrast to modules such as rand-token and uid2 whose UIDs are actually skewed...