In a previous post I described setting up IdentityServer4 with ASP.NET Core 3.1. I thought I’ll create a new series of post for setting up Duende.IdentityServer v6 (“IdentityServer6”) using SQL Server and .NET 6.0. As before, I don’t want to …

Setup Duende.IdentityServer using SQLServer and External IDP’s Read more »

This is a recipe for setting up a Blazor Server App with authentication. We’ll look at: How you setup Login/Logout buttons How to change the menu depending on whether you are already authorized or not How to get the [Authorize] …

Securing Blazor Server App using IdentityServer4 Read more »

The fastest way to create certificate files, is using the makecert command. You can see how to do this here: https://brockallen.com/2015/06/01/makecert-and-creating-ssl-or-signing-certificates/ If you are having problems with makecert, you can also create certificates using the Internet Information Services (IIS) Manager. …

Create self-signed certificate using IIS Manager Read more »

This is a recipe for setting up SwaggerUI for a secure Asp.Net Core 2.2 WebApi. In this recipe we will use the ClientCredentials flow. This means that you must get the token from somewhere, or generate it programmatically. Later I’ll …

Swagger UI and Authentication in Asp.Net Core 2.2 Read more »