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

Complete, compliant and well tested module for implementing an OAuth2 Server/Provider with express in node.js

Results 112 node-oauth2-server issues
Sort by recently updated
recently updated
newest added

**lib/grant-types/authorization-code-grant-type.js** Line 77 The function returns: `return this.saveToken(code.user, client, code.authorizationCode, code.scope);` As per the documentation, code.authorizationCode is never passed, the actual authorization code is passed as **code.code** .

bug

Hi, I'm trying to get node-oauth2-server going. I've got the latest version installed and have this code `oauth.authorize(request, response) .then(function(success) { res.end(JSON.stringify(success)) }).catch(function(err) { response.statusCode = err.code || 500 res.end(JSON.stringify(err))...

v3

I want to make a document for Koreans. However, it is difficult to understand the document structure of this project. If you give me some tips, I will make it...

Good day:I 'm going through the documentation for Node-Oauth-Server2 however, I'm a bit confused based on this documentation for method getUserFromClient https://oauth2-server.readthedocs.io/en/latest/model/spec.html#model-getuserfromclient used for Client_Credential grant type. My understanding of...

Hello. I think OAuth 2.0 token revocation (rfc 2007) should be supported. It could help to develop logout function.

In npm we have package 2.4.0 published 4 years before, however vertion 3.0.1 is released. How to upgrade?

Hi, It would be nice to support representational formats other than JSON. Specifically, I would like to be able to convey the following: ``` json { "access_token":"2YotnFZFEjr1zCsicMWpAA", "token_type":"bearer", "expires_in":3600, "refresh_token":"tGzv3JOkF0XG5Qx2TlKWIA"...

See `Features Fully RFC 6749 and RFC 6750 compliant.` RFC 6750 link redirects to RFC 6749 page

v3
has PR

Hi, I'm using password grant with Restify. Everything is working great. I just wanted to know if there is something built-in (some method) to verify if the accessToken sent via...

I'm facing a problem with the library and I need help. Tecnologies that I'm currencctly using * Typesript: 3.0.3 * Node: 8.12.0 * Express: 4.16.3 * Express-oauth-server: 2.0.0 * The...