哪个是使用 IdentityServer 的最佳场景?
Which is the best scenario for use IdentityServer?
在什么情况下最好使用 IdentityServer
而不是 Identity
并获得 Microsoft.AspNetCore.Authorization
的许可?
最好在什么地方使用一个而不是另一个?
我选择 IdentityServer
是出于速度原因还是什么原因?
您选择 IdentityServer 是因为您希望为不同的应用程序或客户端(移动 applications/web applications/services/apis 等)使用 SSO。 IdentityServer 还允许您将身份验证和授权问题与其他应用程序分开。
Asp.Net 身份只是 Asp.Net 的内置会员系统(用户帐户和管理它们)。 Asp.Net Identity 可以与 IdentityServer 无缝结合使用。
在什么情况下最好使用 IdentityServer
而不是 Identity
并获得 Microsoft.AspNetCore.Authorization
的许可?
最好在什么地方使用一个而不是另一个?
我选择 IdentityServer
是出于速度原因还是什么原因?
您选择 IdentityServer 是因为您希望为不同的应用程序或客户端(移动 applications/web applications/services/apis 等)使用 SSO。 IdentityServer 还允许您将身份验证和授权问题与其他应用程序分开。
Asp.Net 身份只是 Asp.Net 的内置会员系统(用户帐户和管理它们)。 Asp.Net Identity 可以与 IdentityServer 无缝结合使用。