Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Implementing own user registration and authentication with IdentityServer

I have a database with users, how would I start creating a custom implementation of my users with IdentityServer? All the examples I have seen use the InMemoryUser that are hard coded with values.

Can one follow this as a guide line?

like image 225
Mike Barnes Avatar asked Feb 01 '26 07:02

Mike Barnes


1 Answers

Yes, That is a good point.In IndentityServer v3 there is an interface(IUserService) to interact with user store. You can implement the interface using MembershipReboot or Asp.net Identity. Hope this help.

like image 139
Mike Anderson Avatar answered Feb 03 '26 11:02

Mike Anderson