我应该选择哪个 IdentityServer4 示例作为起点?

Which IdentityServer4 sample should I choose as a starting point?

我将使用 identityServer4 来支持一些客户端。 server/host 实施示例有很多,我不确定选择哪一个作为起点。是否有任何主机保持规律并有最新的修复程序?

我应该以 8_EntityFrameworkStorage 作为基础(因为它包含我需要的更多功能)还是 IdentityServer4 主机? 或者某处存在另一个推荐的主机基础实现?

最初我的工作基于 Quickstart #8: EntityFramework configuration , but found that for user storage I need to incorporate Asp.Net Identity from Quickstart #6: IdentityServer and ASP.NET Identity ,这是完全不同的,特别是在 AccountController ExternalLogin 实现中。 其他人也在努力合并不同的快速入门(例如 here

后来(不幸的是对我自己来说有点太晚了)我发现了一篇很棒的文章Getting Started with IdentityServer 4 具有相应的源代码存储库 https://github.com/scottbrady91/IdentityServer4-Example。 但请注意,存储库不是官方 IdentityServer 的一部分,将来可能会过时。

我认为Scott Brady's IdentityServer4-Example是使用IdentityServer4最实用的起点。