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

Hi, Are you supporting [ID Token response type](http://openid.net/specs/oauth-v2-multiple-response-types-1_0-03.html#anchor3)?

I've been working on my built upon oauth2orize version which is [OAuth2orizeRecipes](https://github.com/FrankHassanabad/Oauth2orizeRecipes) for a while and I now have a tutorial/demo of the grant types running on Heroku [here](http://oauth2orizerecipes.herokuapp.com/). My...

In the all-grants example, you should surface the decision endpoint into the actual top-level routes, rather than calling res.render from within the oAuth2.js file. This will make it easier for...

Hello, I am using node-client-sessions library to store sesison in cookies. in the /dialog/authorize endpoint whenever I load the page it seems to be setting new transaction id in authorize...

Although the precise creation/contents of a token is out of the spec of oauth2\* afaik, I like your opinion on whether oauth2orize could/should support different kind of token creation-strategies (among...

Would be great to have an updated all-grants example to include exchange.refreshToken (https://github.com/jaredhanson/oauth2orize/blob/master/lib/exchange/refreshToken.js) especially since all-grants assumes an exhaustive list of grants.

I am attempting to implement an Implicit Token and it's almost all working except the very last, the response with token. In lib/token.js, I've added some extra debug statements to...

Many functions use `done()`, but perhaps it's time to migrate to async function and promise.