我应该选择哪个 IdentityServer4 示例作为起点?
Which IdentityServer4 sample should I choose as a starting point?
我将使用 identityServer4 来支持一些客户端。
server/host 实施示例有很多,我不确定选择哪一个作为起点。是否有任何主机保持规律并有最新的修复程序?
- 我有 Asp.net 核心 mvc 和 web.api 客户端(包括大部分 IdentityServer4 样本)
- 我还有 Web forms Client 用于 VS2015 中的 IdentityServer3
- 我正在使用 Azure Active Directory (AAD) 并检查了 sample 这是 IdentityServer 存储库之外的一个分支,但基于 VS2015 中的 IdentityServer4 外部提供程序示例
- 我想使用持久化数据,所以我查看了 IdentityServer4 EF Core Quickstarts/8_EntityFrameworkStorage
样本。如果有人有 Azure Table 存储或 Redis 实施的示例,请告诉我?
- main IdentityServer4 repository中也有Host。我假设它有最新的代码。但是默认分支是dev-够稳定吗?
我应该以 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最实用的起点。
我将使用 identityServer4 来支持一些客户端。 server/host 实施示例有很多,我不确定选择哪一个作为起点。是否有任何主机保持规律并有最新的修复程序?
- 我有 Asp.net 核心 mvc 和 web.api 客户端(包括大部分 IdentityServer4 样本)
- 我还有 Web forms Client 用于 VS2015 中的 IdentityServer3
- 我正在使用 Azure Active Directory (AAD) 并检查了 sample 这是 IdentityServer 存储库之外的一个分支,但基于 VS2015 中的 IdentityServer4 外部提供程序示例
- 我想使用持久化数据,所以我查看了 IdentityServer4 EF Core Quickstarts/8_EntityFrameworkStorage 样本。如果有人有 Azure Table 存储或 Redis 实施的示例,请告诉我?
- main IdentityServer4 repository中也有Host。我假设它有最新的代码。但是默认分支是dev-够稳定吗?
我应该以 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最实用的起点。