identityserver-token-exchange icon indicating copy to clipboard operation
identityserver-token-exchange copied to clipboard

How to use DB instead of memory for adding users?

Open senzacionale opened this issue 4 years ago • 1 comments

Is it possible to use DB instead of memory for adding users? I am currently already using DB for IdentityServer but I would like to extend it with your library for external provider and use same DB to add users. But currenty users with your library are added only in memory.

senzacionale avatar Sep 13 '19 08:09 senzacionale

Creating your own implementation of the IExternalUserStore interface doesn't take long. You'll need to add at least two columns to your user table (ExternalId and provider).

MortenL avatar Mar 17 '21 23:03 MortenL