-> I want to use Identity server 4 as a central token generator for some clients.
-> Here my problem is I have implemented Identity server 4 with the help of docs, in the docs the IS4 is using its own database for users to login.
-> Can someone explain the way to connect to my own users database for login and token generation. (I'm using the latest version of IS4 and .net core).
Thanks in advance :)
Note: I have tried all the things from docs -> http://docs.identityserver.io/en/latest/quickstarts/8_aspnet_identity.html
AccountControllerwhich did not use ASP.Net Identity. See github.com/IdentityServer/IdentityServer4.Quickstart.UI/blob/…. This version injects a simple user store using in memory test users. You will need to implement your own user store.. - Richard