skip to Main Content

C# Deserialize JSON from API

I have models public class MainResponse { public bool IsSuccess { get; set; } public string? ErrorMessage { get; set; } public object? Content { get; set; } } public class Person { public int Id { get; set; }…

VIEW QUESTION

Azure – MSAL AcquireTokenInteractive redirects browser to unavaible localhost

We are using AcquireTokenInteractive to connect to EWS 365 like this: // using Microsoft.Identity.Client 4.61.1 var pca = PublicClientApplicationBuilder .CreateWithApplicationOptions(pcaOptions) // userId, tennantid .WithDefaultRedirectUri() .Build(); ... var result = await pca.AcquireTokenInteractive(ewsScopes).ExecuteAsync(); This is more or less what the example code…

VIEW QUESTION
Back To Top
Search