I'm building a web api based on Core 2.0. I want to integrate users, though, and I plan on using ASP.NET Core 2.0 Identity. The authentication scheme for the WebAPI should be token based. The frontend is entirely Angular based.
The thing is, I can't find anywhere any documentation on how to properly integrate Identity with WebAPI Core 2.0 and introduce custom tables. There is also no template for Individual Accounts when you create a new WebAPI Core 2.0 project with authentication enabled. Considering all the backend is based on this WebAPI I should be able to register users through it. I also want to enable external authentication.
Can you please share some viable documentation/tutorial about this. There is nothing like that in the aspnetcore docs so please don't tell me to look there. Thank you!