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

It seems like the state parameter is supported in the implementation, but not sure how it is used in the AS side. Could you give an example when granting code,...

Travis Tests are failing because you are supporting **NodeJS versions older than V8**. Get rid of it, it's ancient history!

dependencies out of date ** 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...

I've seen in your examples you mostly use uid2 for unique id generation which is now (in version 0.0.3) using node's `crypto.pseudoRandomBytes()`. As stated in the documentation, these ids are...

direct require instead of fs.readDir allows oauth2orize to be packaged with webpack

** READ THIS FIRST! ** #### Are you looking for help? Reminder: The issue tracker is not a support forum. Issues should only be filed in this project once they...

When I request my "access token", by passing my "auth token", I was expecting to also receive a "refresh token", however it's missing. Can someone explain why it's missing, and...

** READ THIS FIRST! ** When doing `npm install`, it complains potential security vulnerabilities from mocha package as followings: ``` added 30 packages from 300 contributors and audited 30 packages...

Basically I have next route in my node.js app: app.post('/oauth/token', trustedClientPolicy, passport.authenticate(['basic', 'oauth2-client-password'], { session: false }), server.token(), server.errorHandler() ); 'basic' policy requires authentication by asking user put his username,...