Skip to content

Latest commit

 

History

History
44 lines (31 loc) · 1.55 KB

README.md

File metadata and controls

44 lines (31 loc) · 1.55 KB

UnifiedApp

.NET

This example illustrates how to establish JWT token-based authentication in an ASP.NET Core Identity project using ASP.NET Core 8.

Endpoints

  • Register: Create new user accounts.
  • Login: Log in and receive a JWT token.
  • Refresh Token: Renew tokens without re-login.
  • Profile: Access user-specific information. Endpoints

Screens

  • Home: Endpoints
  • Register: Endpoints
  • Login: Endpoints
  • Unit Test: Endpoints

Database Migrations

To add migrations, use the following command:

dotnet ef migrations add Initial --project src/data --startup-project src/api

To add Update Database, use the following command:

dotnet ef database update --project src/data --startup-project src/api

Support

If you are having problems, please let me know by raising a new issue.

License

This project is licensed with the MIT license.