Glenn F. Henriksen

Results 29 comments of Glenn F. Henriksen

Yeah, that's actually a new annoyance. @alystair 's AHK script fixed the calc button on my keyboard, but now when I'm using PowerToys Run to start it on my laptop...

I think hiding it behind an "Advanced settings" link is quite reasonable and in line with what I've seen in for instance Windows Settings.

Yes, of course! ``` Users: MSAL UI error. Unable to get user list: "Microsoft.Identity.Web.MicrosoftIdentityWebChallengeUserException: IDW10502: An MsalUiRequiredException was thrown due to a challenge for the user. See https://aka.ms/ms-id-web/ca_incremental-consent. ---> MSAL.NetCore.4.17.1.0.MsalUiRequiredException:...

But why does it work fine locally? Or fine when I call it in the `TestClient` directly. It's only when it's in the handler running in Azure it doesn't work.

> a possible idea (to try) might be to inject `MicrosoftIdentityConsentAndConditionalAccessHandler` in the constructor of you delegating handler I'll try that, thanks!

Looks like the `MicrosoftIdentityConsentAndConditionalAccessHandler` couldn't find a user either. Tried ``` var accessToken = await _tokenAcquisition.GetAccessTokenForUserAsync( new[] {Scope}, user: _consentAndConditionalAccess?.User ).ConfigureAwait(false); ``` ``` System.NullReferenceException: Object reference not set to an...

@andagon I don't think those would work in my case. Firstly, I'm not using B2C, but secondly, from my understanding the problem here is when getting a new access token...

@EdAlexander The workaround is basically using `ITokenAccessor` anywhere but in a `DelegateHandler` 😄 What I did was make a new Typed Client that just reuse the DTOs and Query objects...

@skurik No, I still have that problem on Windows. I'm now using Pulumi via WSL. Not ideal, but at least it works. From looking at Azure/azure-cli#14426, I went though my...

You could probably look at the VS Spotify Remote for some tips on interfacing with Spotify: https://github.com/arjankuijpers/SpotifyRemote