Search code examples
c#api.net-coreidentityserver4

Get users list from identity server


I am implementing Identity Server admin where admin can see all the users and also add/update or delete users.

What is the best way to implement it?

I got a link https://github.com/IdentityServer/IdentityServer3/issues/2607 which suggest that I should create a separate secured API which will talk to same database of identity server.

Is that correct way. Kindly recommend.


Solution

  • Yes, it is stated that you should create an application for management of Users, Resources, etc.

    Scott Brady states here that you can write your own API or use another package like IdentityManager.

    However, IdentityManager package is no longer active, you can use IdentityServer4.Admin package instead.