Securing Minimal API Endpoints
Learn how to secure minimal API endpoints
We'll cover the following...
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*"
}Web API app with the full OIDC authentication flow
Note: Because we have to build two ASP.NET Core applications and populate the IdP database with the initial seed data, the build process is expected to take at least a few minutes. Also, because each playground launch rebuilds the IdP along with its database, the account previously registered will no longer work. We will need to register a new account.
The setup is represented by the following projects: ...
Ask