gpt4 book ai didi

c# - 使用多个 ADFS + Cookie 时未执行 OWIN Challenge() 方法

转载 作者:太空宇宙 更新时间:2023-11-03 21:16:18 26 4
gpt4 key购买 nike

我的 ASP.Net 应用程序使用 OWIN/Katana/Claims,并允许使用以下方式登录:

  1. 传统用户名/密码(所有用户都存在)
  2. 谷歌
  3. Azure 广告

它运行良好,所有必要的重定向/声明传输都运行良好(用户 NameIdentifier/Provider(/tenant) 详细信息被传回我的应用程序,因此可以链接唯一的 id 值)。请注意,用户无需注册/注册该应用程序 - 访问权限由其组织的 super 用户提供,并向他们发送用户名/密码,然后他们可以连接到 Google/Azure。

但是,我现在需要扩展此功能以允许用户连接到他们组织的 ADFS 提供程序。唯一可以远程关闭的工作示例在这里 ( tutorial/code ),但它严格基于 ADFS-only。当我将它应用到我的项目中时,它不起作用。

我的整个 StartupAuth 文件如下所示。我知道可能存在配置错误,但根据我在过去六周内发现的样本碎片,这是我拥有的最好的样本。

public void Configuration(IAppBuilder app)
{
// STANDARD CODE FOR APP COOKIE AND GOOGLE - WORKS PERFECTLY

CookieAuthenticationOptions coa = new CookieAuthenticationOptions {
AuthenticationMode = AuthenticationMode.Active,
CookieName = "MyAppName",
ExpireTimeSpan = TimeSpan.FromMinutes(60),
SlidingExpiration = true,
AuthenticationType = DefaultAuthenticationTypes.ApplicationCookie,
LoginPath = new PathString("/login.aspx"),
CookieHttpOnly = true,
CookieSecure = CookieSecureOption.SameAsRequest,
Provider = new CookieAuthenticationProvider { OnValidateIdentity = context =>
{
dynamic ret = Task.Run(() =>
{
// Verify that "userId" and "customerId" claims exist, and that each has a valid value (greater than zero) - removed for brevity
return Task.FromResult(0);
});
return ret;
} }
};
app.SetDefaultSignInAsAuthenticationType(coa.AuthenticationType);
app.UseCookieAuthentication(coa);

app.UseExternalSignInCookie(DefaultAuthenticationTypes.ExternalCookie);
app.UseGoogleAuthentication(new GoogleOAuth2AuthenticationOptions {
ClientId = "84***********************k3.apps.googleusercontent.com",
ClientSecret = "jue*****************Ppi"
});



// NEW CODE THAT FAILS TO WORK - SPECIFYING EACH CUSTOMER'S ADFS AS A NEW WSFED AUTH OPTION


WsFederation.WsFederationAuthenticationOptions Adfs_CompanyA = new WsFederation.WsFederationAuthenticationOptions {
AuthenticationMode = AuthenticationMode.Passive,
MetadataAddress = "https://CompanyA.net/FederationMetadata/2007-06/FederationMetadata.xml",
AuthenticationType = AdfsAuthenticationTypes.CompanyA,
Wtrealm = "https://www.CompanyA.co.uk/MyAppName"
};

WsFederation.WsFederationAuthenticationOptions Adfs_CompanyB = new WsFederation.WsFederationAuthenticationOptions {
AuthenticationMode = AuthenticationMode.Passive,
MetadataAddress = "https://CompanyB.net/federationmetadata/2007-06/federationmetadata.xml",
AuthenticationType = AdfsAuthenticationTypes.CompanyB,
Wtrealm = "http://www.CompanyB.co.uk/azure/MyAppName"
};

// User (who is logged in), route for hyperlink "Link my account with ADFS"
app.Map("/SSO/LinkUserAccount/ADFS/process", configuration => { configuration.UseWsFederationAuthentication(Adfs_CompanyA); });

// CompanyA ADFS - single sign-on route
app.Map("/SSO/Login/CompanyA/ADFS/Go", configuration => { configuration.UseWsFederationAuthentication(Adfs_CompanyA); });

// CompanyB ADFS - single sign-on route
app.Map("/SSO/Login/CompanyB/ADFS/Go", configuration => { configuration.UseWsFederationAuthentication(Adfs_CompanyB); });
}
}

这是我用来发出 OWIN 挑战的代码:

string provider = MyApp.SingleSignOn.GetCustomerAdfsAuthenticationType(customerName);
string redirectUrl = string.Format("{0}/SSO/Login/{1}/ADFS/Go", Request.Url.GetLeftPart(UriPartial.Authority), provider); // creates https://myapp.com/SSO/Login/CompanyA/ADFS/Go for CompanyA users
Context.GetOwinContext().Authentication.Challenge(new AuthenticationProperties { RedirectUri = redirectUrl }, provider);
Response.StatusCode = 401;
Response.End();

这是网络表单,但请不要让它阻止 MVC 专业人士的贡献。无论如何,代码实际上是相同的,而且我正在使用路由。

我遇到的问题是,当用户单击“使用 ADFS 登录”链接时,例如网址变为 https://myapp.com/SSO/Login/CompanyA/ADFS我收到 401 Unauthorized 错误,而不是将用户重定向到 ADFS 登录页面。
在 web.config 中,我允许未经授权访问路径“SSO”。出于某种原因,Challenge() 方法从不重定向用户,它只是被忽略并且代码到达返回 401 的位置。字符串 provider 的值完全匹配Startup.Auth 中定义的 WsFederationAuthenticationOptions.AuthenticationType 值。

我已经为此苦苦挣扎了六个星期,所以这是第一时间获得赏金,并在解决后将一箱啤酒送到您选择的地址。

最佳答案

我解决了这个问题。令人惊讶的是,它就像我在 StartupAuth 的结尾遗漏了这个一样简单:

app.UseStageMarker(PipelineStage.Authenticate);

关于c# - 使用多个 ADFS + Cookie 时未执行 OWIN Challenge() 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34048671/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com