GeeGee
GeeGee
Facing the same issue. User.Identity.IsAuthenticated is always false. This is my program.cs ```csharp var builder = WebApplication.CreateBuilder(args); builder.Services.AddAuthentication(JwtBearerDefaults.AuthenticationScheme) .AddMicrosoftIdentityWebApi(builder.Configuration.GetSection("AzureAd")); builder.Services.AddControllersWithViews(); builder.Services.AddRazorPages(); builder.Services.RegisterInfrastructure(); builder.Services.RegisterApplication(); builder.Services.RegistorHttpClientFactory(builder.Configuration); builder.Services.AddControllers(); builder.Services.AddHangfire(x => x.UsePostgreSqlStorage(builder.Configuration.GetConnectionString("Hangfire"))); builder.Services.AddHangfireServer(); builder.Services.AddMemoryCache();...