Azure – Calling an ASP.NET Core Web API integrated to EntraId app from another .NET Core console app integrated to EntraId app fails
I have created an ASP.NET Core Web API and registered it in EntraID and configured it in my program.cs as follows: builder.Services .AddAuthentication(JwtBearerDefaults.AuthenticationScheme) .AddMicrosoftIdentityWebApi(builder.Configuration.GetSection("AzureAd")); builder.Services.AddAuthorization(); Then I have registered another app in the EntraId and configured the code in the…