I want to add IdentityServer3 to a web application that currently uses the standard Entity Framework, SQL Server, Code First approach to manage users and roles.
I would like to add IdentityServer3 to protect the new web API endpoint using Basic Auth, JWT, and OAuth2. The key point would be to leave the existing user interface intact (login URLs, cookies, etc.).
I would like to leave the ASP.Net ID code as much as possible.
My question is: what are the main steps that I need to follow, and are there any relevant examples?
There seems to be a lot of documentation, but it's pretty involved, and I can't find a sample for this exact scenario.
source
share