Nathan Alter
Nathan Alter
In my case, I called the wrong .AddJwtBearer without the provider key like this: ```C# services.AddAuthentication() .AddJwtBearer(x => { x.Authority = "test"; x.Audience = "test"; }); ``` Should have been...
When I download the code into my MVC project, the .min.js file is the one that gets used. Visual Studio does not do the minification...it assumes the min.js one I've...
Our authentication system has colons in all claim keys due to its naming scheme, so it looks like we can't use claims with Ocelot.