I'm working with a web application in Asp.Net Core 1 and would like to integrate authentication, I thought of using Stormpath but can not connect to a local database to make the login match.
If there is no way, what choice do I use? Thank you
I'm working with a web application in Asp.Net Core 1 and would like to integrate authentication, I thought of using Stormpath but can not connect to a local database to make the login match.
If there is no way, what choice do I use? Thank you
Stormpath will store your user accounts, but you can also use a local database to 'relate' to your Stormpath user accounts.
The idea is pretty simple. When you store a user in Stormpath, you'll get back an account object. This object has an
hrefproperty which is a unique ID for the user.If you want to create a database table named
books, that has anauthor_idForeignKey type field, you would define theauthor_idfield as a TEXT field, then store the accounthreffrom Stormpath there.This is how you would 'relate' to Stormpath accounts.