node-oauth2-provider
node-oauth2-provider copied to clipboard
A simple customizable OAuth 2.0 provider (server) for node.js.
Hello, I noticed the npm version of your library doesn't have refresh token support. As a result, I wrote it myself: https://gist.github.com/TooMuchRAM/6f003fe8d12a7b6d400ab905246ba4f5 Could you please look into the possibility of...
Allow flexibility of verifying access_token in req.body for POST methods.
A race condition happens when the user uses this express app to generate a token and then tries to use the access_token before the save transaction was successful with another...
Adds arguments to 'save_grant' event callback: - `err` for any errors that occurred while saving the grant. - `extras`, optional, overrides the default `extras` generated by oauth2-provider. For example, allows...
updates i use for my site. i have more exposed to the events added `'before_authorize_form', function(req, res, client_id, function doAuthorizeForm(),function doBypass())` changed `'create_access_token', req, user_id, client_id, function callback(scope)` changed extra_data...
Properly extending EventEmitter in node.js read a good example at http://opensourcejason.info/2013/10/08/properly-extending-eventemitter-in-node-js/
Check to make sure that any redirect_uri that is passed in is allowed for that particular client_id.
Im working on extending the feature set of this package to include "client-credentials" authentication. The problem is that the code package at the moment is very static to always having...
it should be optional so you can have things like command-line tools that are user-accessible but wont expose a secret