作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想将身份服务器 4 与一堆不同的外部身份提供商一起使用。不只是一个。例如:一个企业可能将 ADFS 用于其 EIP,另一个企业可能会使用 AZURE 身份,等等。在这种情况下,只有一个身份服务器实例访问不同的外部 ID 提供程序。
这可能吗?或者有人尝试过吗?如果没有,您是否知道有这样做的服务。
最佳答案
当然这是可能的。您可以根据需要在 Startup 类中注册任意数量的外部 IdP。请务必查看 Identityserver 中的示例快速入门存储库。
此代码会将 AzureAd 和 Google 注册为外部 IdP。要提前进行设置,您必须在 Developers.google 和 AzureAd 中注册您的应用程序以授权您的应用程序。
app.UseOpenIdConnectAuthentication(new OpenIdConnectOptions
{
ClientId = Configuration["AzureAd:clientid"],
Authority = Configuration["AzureAd:authority"],
ClientSecret = Configuration["AzureAd:secret"],
PostLogoutRedirectUri = "/signed-out",
AuthenticationScheme = "AzureAd",
ResponseType = OpenIdConnectResponseType.CodeIdToken,
SaveToken = true,
});
app.UseGoogleAuthentication(new GoogleOptions
{
ClientId = Configuration["Google:clientid"],
ClientSecret = Configuration["Google:secret"],
AuthenticationScheme = "Google",
SaveTokens = true
});
关于identityserver4 - 使用多个外部身份提供商的身份服务器 4,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41991262/
我在前几天的测验中遇到了以下问题。 Consider the code fragment (assumed to be in a program in which all variables are
关闭。这个问题需要更多focused .它目前不接受答案。 想改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 关闭 9 年前。 Improve this qu
我刚开始接触 Objective-C,一般来说是 C,所以我想这也是一个 C 问题。它更像是一个为什么的问题,而不是一个如何做的问题问题。 我注意到,在除以两个整数时,小数部分向下舍入为 0,即使结果
我是一名优秀的程序员,十分优秀!