I'm about to implement a web application (back office for an existing app.) using the ASP.NET Core framework. At the moment I'm thinking about on how will I authenticate the user. The main database is using MySQL (not supported on this framework), so I will access the database troughout an existing PHP SOAP API.
Is there any way to implement a token based (OAuth) authentication knowing that the data access will be done trough a SOAP API ?
Identityframework? I went through something similar (implementingIdentityon top of an existing database with existing user tables and stored procedures) myself not too long ago. As long as you implement the mainIdentityinterfaces, how the methods persist data doesn't matter.