node-oauth2-provider icon indicating copy to clipboard operation
node-oauth2-provider copied to clipboard

A simple customizable OAuth 2.0 provider (server) for node.js.

Results 16 node-oauth2-provider issues
Sort by recently updated
recently updated
newest added

can you add/change this to your lovely little module ``` js } else if(req.method == 'POST' && self.options.access_token_uri == uri) { var client_id = req.body.client_id || req.query.client_id, client_secret = req.body.client_secret...

This library is great and has a lot of value, but such a core framework is dangerous to use without unit tests. Good unit tests would also provide documentation.

The module's method of having wide try catch blocks and returning errors is not typical for node, and it leaves bugs undiscovered or harder to track down. It should either...

Maybe subclassing or delegation would be better...

Support scope parameter in authorization request.