PreviousNext

ASP.NET Core Web API Multi-Tenant JWTs

by bill-s, 2018-04-10T08:19:49.299Z

Authentication via a JWT is pretty much standard practice these days and there are lots of blog posts and sample code showing how to do this in ASP.NET Core. However, what if we are implementing a multi-tenant API and want the JWT signing key secret to be different for each tenant? In this post we go through how to implement a multi-tenant JWT.

Read More