Tobi Kremer

Results 24 comments of Tobi Kremer

Seems like `writeBuffer()` expects a `BerWriter` buffer, so the proposed change won't fix my issue. I'm trying to implement a Proxy Authentication Control which basically needs to send the corresponding...

Unfortunately, the `next` branch doesn't solve the problem. Is there a simple solution which does not involve reading through the LDAP wire protocol? 😄AFAICT, I'll just need to send a...

I went ahead and created a Control subclass for my Proxy Authentication Control by copying one of the controls which are shipping with the library. At first it didn't work...

Am I understanding this correctly? The described vulnerability due to the missing PKCE feature only applies to mobile/desktop apps(!) which are able to register custom URI schemes in the OS,...

I'm currently looking at [node-oidc-provider](https://github.com/panva/node-oidc-provider) as an alternative (contrary to this project it's an **OpenID-Connect capable** OAuth2 provider). It seems to be very well maintained. So far, I have only...

Set `allowExtendedTokenAttributes: true` when creating your OAuthServer instance: ```js const OAuthServer = require('express-oauth-server'); const oAuthModel = require('my-oauth-model'); const oAuth = new OAuthServer({ model: oAuthModel, allowExtendedTokenAttributes: true }); ``` Then you...

> ```js > adapter.linkAccount = ({_unwanted, ...data}) => adapter.linkAccount(data) > ``` If I'm not mistaken, this leads to a recursion and eventually to a `Maximum call stack size exceeded` error....

This is most likely related to https://github.com/nodejs/docker-node/issues/1734 and https://github.com/npm/cli/issues/4996

A couple of months ago we started seeing network errors as well, mostly `ECONNRESET`, when using npm behind a proxy. I was able to reproduce the behaviour on my local...

Somehow the situation improved greatly in the last couple of weeks in my case. I have had only a single build breaking due to "network problems" (ECONNRESET). I suspect newer...