Asp.net – "IDX10500: Signature validation failed." error with self-hosted KeyCloak and API Gateway Ocelot
So as stated in the title, I am having issues with the token validation in dotnet application. Here is the program.cs code: using Microsoft.AspNetCore.Authentication.JwtBearer; using Microsoft.IdentityModel.Tokens; using Ocelot.DependencyInjection; using Ocelot.Middleware; var builder = WebApplication.CreateBuilder(args); // Add configuration for Ocelot builder.Configuration.AddJsonFile("ocelot.json",…