OpenIDConnect
OpenIDConnect copied to clipboard
A simple customizable OpenID Connect provider (server) for node.js.
I've this error Waiting for redis client to come back online. Connections: 0 RedisClient::Events[error], Error: Redis connection to localhost:6379 failed - connect ECONNREFUSED 127.0.0.1:6379
This PR adds two settings for the expiry time for access tokens and refresh tokens. The default expiry times are not changed and are still 1 hour and 5 hours,...
This PR fixes the `return_url` when using the OpenIDConnect middleware from a router under a sub-path. For example, ``` const OauthRoutes = require('./routes/oauth') app.use('/oauth', OauthRoutes)//"login" ``` Without `baseUrl`, the `return_url`...
https://openid.net/specs/openid-connect-basic-1_0.html#UserInfoResponse
Hi, I've a problem, when config is: ``` js { login_url: '/test/sso/login', consent_url: '/test/sso/consent', } ``` and OpenIDConnect generate url `/login` I found the solution: in line `var q =...
I think you forgot express module into package.json
I'm getting the error in title in a production environment. The reason is that the default value of `migrate` of models is `'alter'` in [waterline](https://github.com/balderdashy/waterline-docs/blob/master/models/models.md#model-property-summary). As suggested in [this comment](https://github.com/balderdashy/waterline/issues/887#issuecomment-84016834),...
Hello, I am trying to set up a Node Js identity provider using your implementation. However i want to use it as a proxy towards the relying parties because the...
This fixes #43. When using `oidc.use` middleware in a route, there is a brief moment at startup that modelling/waterline haven't finished starting up. Modelling provides a callback for that and...
when using `oidc.use` middleware in a route, there is a brief moment at startup that modelling/waterline haven't finished starting up. Modelling provides a callback for that but it is ignored...