Luis Mañez

Results 34 comments of Luis Mañez

By chance, do you have a Conditional Access policy blocking the App "Office 365 Exchange Online" ?

Not sure if this helps, but this is what I´m doing to achieve what you need. Basically, I´m overwriting the HttpClient used by ```AddDownstreamWebApi()``` and then adding my Polly stuff...

hey @jmprieur. Is there any update here? I´ve seen a bunch of great changes in the library, but not sure if there´s any improvement in the MSAL.net about token acquisition...

Yeah, and would be great if we could do something like this in the Az Functions Startup: ```csharp services. .EnableTokenAcquisitionToCallDownstreamApi() .AddDownstreamWebApi("Api1", "Api1") .AddDownstreamWebApi("Api2", "Api2") .AddMicrosoftGraph() .AddDistributedTokenCaches(); ``` Directly from the...

That paragraph maybe is not very well explained. The Distributed Cache is just an abstraction (using __IDistributedCache__ interface). Using Distributed cache, you can inject later the store you want to...

@bgavrilMS I think there´s an issue in the _token-cache-serialization_ wiki page. When saying: > By using the DistributedMemory cache, you get the benefits of a more performant L1/L1 cache. Note...

Awesome clarification @bgavrilMS ! many thanks. I´m just curious, how can you disable L1 cache??

Great! thanks @bgavrilMS ... I haven´t worked with the library in the last months, and seems the team has done a lot of improvements!!

Any update here @jmprieur @jennyf19 ?? Hitting very similar issue, likely same cause. In my case, I´m not calling __AddAuthentication__ as that break HttTriggers secured by Function code. My startup...

Thanks a ton @jmprieur !! that helps a lot. Just curious regarding: > use that PR to get the update. As this is the functions host, it would work just...