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

Paypal api – Adyen Web Drop In

I've gone through most of the instructions here and am able to process a test card transaction https://docs.adyen.com/online-payments/web-drop-in. I pulled down the example repo here https://github.com/adyen-examples/adyen-dotnet-online-payments. The issue I'm having in the redirect result, the returnUrl does not have the…

VIEW QUESTION

Cannot connect .NET app with MongoDB (System.MissingMethodException: Method not found:)

I am simply trying to connect my MongoDB cluster with my .NET app, but when I test my routes with swagger i get this error: System.MissingMethodException: Method not found: 'MongoDB.Bson.GuidRepresentationMode MongoDB.Bson.BsonDefaults.get_GuidRepresentationMode()'. at MongoDB.Driver.MongoUrlBuilder..ctor() at MongoDB.Driver.MongoUrlBuilder..ctor(String url) at Microsoft.EntityFrameworkCore.MongoOptionsExtension.SanitizeConnectionStringForLogging(String connectionString) at…

VIEW QUESTION
Back To Top
Search