skip to Main Content

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",…

VIEW QUESTION

Ocelot Gateway duplicate query params – Asp.net

I am using ocelot gateway. Here is the example configuration { "DownstreamPathTemplate": "/ipgeo?apiKey={key}&ip={ip}", "DownstreamScheme": "http", "DownstreamHostAndPorts": [ { "Host": "api.ipgeolocation.io", "Port": 80 } ], "UpstreamHttpMethod": ["GET"], "UpstreamPathTemplate": "/GLI/secondary?apiKey={key}&ip={ip}" } As you can see, there are two query params. When I…

VIEW QUESTION
Back To Top
Search