add a sample AuthorizationServer to the repo and put traffic-police app in a separate folder

This commit is contained in:
Muhammad Azeez
2021-01-16 21:20:05 +03:00
parent 91810950db
commit 85cd111f5f
201 changed files with 10992 additions and 16 deletions

View File

@@ -66,7 +66,7 @@ namespace OidcSamples.TrafficPoliceApi
options.DefaultChallengeScheme = JwtBearerDefaults.AuthenticationScheme;
}).AddJwtBearer(options =>
{
options.Authority = "https://localhost:5003";
options.Authority = "https://localhost:10000";
options.Audience = "traffic-police-api";
});
}