-
Book Overview & Buying
-
Table Of Contents
-
Feedback & Rating
ASP.NET Core 9 Web API Cookbook
By :
In this recipe, we will set up ASP.NET Core Identity. Identity provides a comprehensive solution for authentication, authorization, and user management, protecting your data and resources. Identity is a powerful tool that makes handling user accounts and permissions much easier for developers.
The starter project for this recipe can be found here: https://github.com/PacktPublishing/ASP.NET-9-Web-API-Cookbook/tree/main/start/chapter03/IdentitySetup
You can also continue from the preceding recipe. The starter project does not have the custom domain self-signed certificate we used in the preceding recipe. For now, we will go back to running the examples on localhost. So If you did not install the self-signed certificate before, no problem. In this recipe, we are still following the best practice of not listening on HTTP at all so you will have to create a dev cert:
dotnet dev-certs https --clean dotnet dev-certs https...