我正在尝试将NoSql数据存储集成到Identity Server 4(例如Cosmos DB)中。我想知道是否有人在做类似的事情和/或是否可能。

最佳答案

当然,可以将NoSQL数据库用于IdentityServer4。为什么不?

这是MongoDB的示例


 public void ConfigureServices(IServiceCollection services)
  {
  ...
    // ---  configure identity server with MONGO Repository for stores, keys, clients and scopes ---
    services.AddIdentityServer()
           .AddTemporarySigningCredential()
           .AddMongoRepository()
           .AddClients()
           .AddIdentityApiResources()
           .AddPersistedGrants()
           .AddTestUsers(Config.GetUsers());
  ...
  }

还有另一个github项目cloudscribe,ASP.NET Core Multi-Tenancy Web应用程序基础,具有对站点,用户,角色,声明等的管理。该项目正在为IdentityServer实现PostgreSQL(ORDBMS)和MySql。在这个项目中,您将获得有关如何实现允许在数据库之间切换的系统的想法。

10-08 00:39