ASP.NET Core - Identity with JWT

Overview

This post will go over the process of setting up an ASP.NET Core project to use the Identity providers with Json Web Tokens (JWT) instead of the default cookie based approach. It will also make use of Claims Identity and allow for role based authorization. I’ll assume some background knowledge on how ASP.NET Core and Identity works. Please see the docs or my previous blog post for more information. For examples, check out the Angular Template code on github.com. The information in this post is pulled from that project.

Read More

ASP.NET Core - Simple Identity

Overview

This post will go over the process of setting up an ASP.NET Core Web Api project. It will also cover configuring the project to use the built in Identity providers. When it’s done there will be some examples of it working in action.

Read More