Max Truxa

Results 26 comments of Max Truxa

Good catch. Note: *All* model functions are promisified. Either you specify a callback argument for those functions and call it when you're done, or you don't specify it and return...

> I'm using `express-oauth-server 2.0.0`. But I think, it's about `oauth2-server 3.0.0`. Could you clarify what you mean by that? The server option `requireClientAuthentication` is available starting with 3.0. If...

Model functions that are required for the authorization code grant are listed [here](http://oauth2-server.readthedocs.io/en/latest/model/overview.html#authorization-code-grant). What else do you need to know? I'm not trying to sound condescending, probably just know the...

@mjsalinger Sure, which backends do we want examples for? - "memory": This one is probably great to visualize requirements without having to think about the actual storage implementation. - MongoDB:...

I'm almost done with an example application building on top of a model with *memory* backing. The application is basically a small authorization server with a web frontend for managing...

Adding additional context: We're working in an offline environment and would like to switch from Hyper to Windows Terminal. This issue is blocking the switch.

Some thoughts on the topic: Connection pooling can be one such answer, that can even be used without modifying DRPC at all. But while connection pooling can be an effective...

None of the middlewares exported by `OAuth2Server` ever return an unknown error type. Unknown errors are always wrapped using [`ServerError`](https://github.com/oauthjs/node-oauth2-server/blob/17ad710d4ad152e467fc889f07a534fdc24f0610/lib/errors/server-error.js#L19) ([#authenticate](https://github.com/oauthjs/node-oauth2-server/blob/17ad710d4ad152e467fc889f07a534fdc24f0610/lib/handlers/authenticate-handler.js#L95), [#authorize](https://github.com/oauthjs/node-oauth2-server/blob/17ad710d4ad152e467fc889f07a534fdc24f0610/lib/handlers/authorize-handler.js#L114), [#token](https://github.com/oauthjs/node-oauth2-server/blob/17ad710d4ad152e467fc889f07a534fdc24f0610/lib/handlers/token-handler.js#L99)). With #19 merged you can initialize the...

It appears certificates *are* being validated now. Being unable to specify a CA bundle - or at least disable validation - makes it impossible to host a (private) repository with...

Just came here to report this myself. I'm running Bitwarden Cli (which uses inquirer) commands as part of a script. Interactive output from Bitwarden is sent to stderr, which is...