express-oauth-server
express-oauth-server copied to clipboard
Complete, compliant and well tested module for implementing an OAuth2 Server/Provider with express in node.js
Several issues open and without activity, is this still being maintained?
Could you please publish the latest version of the server, which relies on `next` rather than a git branch. Also, would you consider relying on a specific release of `oauth2-server`,...
Example in README at https://github.com/oauthjs/express-oauth-server fails to work with error: ``` {"error":"invalid_argument","error_description":"Invalid argument: model does not implement `getClient()`"} ``` If this isn't a complete example it would help to mention...
Greetings, Excellent work on this project! With the lastest `oauth2-server` I have a working `client` and `password` model. I am able to generate and verify user, client, and token credentials....
If using this project with latest `oauth2-server`, `express-oauth-server` will fail if using custom express middleware. For example: ```ts const req = new Request(request); const res = new Response(response); expressOAuthServer.server.token(req, res).then(()...
After a long debugging session I found following configuration options: ```js oauth = new OAuthServer({ model: dataModel, debug: true , allowExtendedTokenAttributes: true, alwaysIssueNewRefreshToken: false, requireClientAuthentication: {}, accessTokenLifetime:1800, refreshTokenLifetime: 3600}); ```...
Sorry to ask, but i've been having a problem to finish setup, i had to remove de validation of the response instance in the authenticate() middleware, since i haven't been...
I'm try generate oauth tokens with password grant but the server not responding my branch: https://github.com/ChicoFigueiredo/receita.digital/tree/001-criando-servidor-oauth2/server Postman : [Testes.postman_collection.json.zip](https://github.com/oauthjs/express-oauth-server/files/2131285/Testes.postman_collection.json.zip) I'm using mongodb
Here at Concept Gaming, we're implementing GraphQL. The setup makes things difficult to work with as GraphQL only exposes data through the use of a single route, this requires us...