Roel

Results 24 comments of Roel
trafficstars

Closing this since KeeWeb isn't officially supported by this extension anymore

Some multipage logins work and some don't, depending on how they are created. This is something that will be improved in future versions of the extension, because we're seeing those...

I do want to add support for OTP in the future. But the currently used KeePassHttp does not support OTP and probably never will, because it's not maintained anymore. In...

I fixed it by replacing this line from my `.npmrc`: ``` //gitlab.com/api/v4/packages/npm/:_authToken=MY_TOKEN ``` With: ``` //gitlab.com/api/v4:_authToken=MY_TOKEN ``` Because pnpm was requesting `//gitlab.com/api/v4/projects//packages/npm`, which doesn't match `//gitlab.com/api/v4/packages/npm/`

This is a very annoying issue which also seems to affect SPFx applications loaded inside Teams in a worse way. Because in Teams it doesn't refresh it just fails. While...

This is an extremely annoying issue. I just did some debugging on Teams (new). 1. It sends a request to `https://tenant.sharepoint.com/_api/Microsoft.SharePoint.Internal.ClientSideComponent.Token.AcquireOBOToken?resource=%275b4f4178-c479-4093-9bd4-5910567296ad%27&clientId=%2708e18876-6177-487e-b8b5-cf950c1e598c%27`. Which fails with HTTP 401 and the message "Exception...

I seem to have solved this issue. Tested this on 3 different tenants with multiple users. The solution posted here solved our issue: https://www.eliostruyf.com/fix-admin-consent-sp-token-retrieval-flows-spfx/ (mentioned in #9636) Copy of the...

It's about this code, where `this.config.auth.clientCertificate` can be `undefined`: https://github.com/AzureAD/microsoft-authentication-library-for-js/blob/2ff18f23f0631507ccbf966478b152b02c9d25af/lib/msal-node/src/client/ConfidentialClientApplication.ts#L223-L226

Encountered this using `ConfidentialClientApplication`

@Robbie-Microsoft Yes. I'm calling `acquireTokenByClientCredential`. This is the code that works on 2.10.0, but not on 2.11.0: https://github.com/SMTP2Graph/SMTP2Graph/blob/aaa5f5b8db38230b8280eb6714819625b7530ee9/src/classes/Mailer.ts#L21-L31 This is the code that requests the token: https://github.com/SMTP2Graph/SMTP2Graph/blob/aaa5f5b8db38230b8280eb6714819625b7530ee9/src/classes/Mailer.ts#L151-L161 If you want...