gpt4 book ai didi

c# - 在两个 ASP.NET Core 应用程序之间共享 Cookie

转载 作者:太空狗 更新时间:2023-10-30 01:13:36 28 4
gpt4 key购买 nike

我正在使用 WsFederation在两个单独的 ASP.NET Core 项目中。

每个项目在Startup.cs中都有如下内容

services.AddAuthentication(sharedOptions =>
{
sharedOptions.DefaultScheme = CookieAuthenticationDefaults.AuthenticationScheme;
sharedOptions.DefaultSignInScheme = CookieAuthenticationDefaults.AuthenticationScheme;
sharedOptions.DefaultChallengeScheme = WsFederationDefaults.AuthenticationScheme;
})
.AddWsFederation(options =>
{
options.Wtrealm = Configuration["Wtrealm"];
options.MetadataAddress = "http://example.com/metadata.xml";
options.SkipUnrecognizedRequests = true;
options.RequireHttpsMetadata = false;
options.UseTokenLifetime = false;
})
.AddCookie(options =>
{
options.Cookie.Name = "MySharedCookie";
options.Cookie.Path = "/";
options.Cookie.Domain = ".dev.example.com";
});

我在浏览器中加载项目 #1 并获取我的 cookie:

enter image description here

然后我导航到同一子域上的项目#2。但是,项目 #2 无法识别 MySharedCookie 并重新进行身份验证。我得到一个名称相同但值不同的新 cookie:

enter image description here

在 ASP.NET Core 中我尝试做的事情是否可行?在 ASP.NET Core 中有没有一种方法可以与项目 #2 共享项目 #1 的 cookie?

最佳答案

这记录在 Sharing cookies among apps with ASP.NET and ASP.NET Core .还有一个Cookie Sharing App Sample可用的。

为了共享 cookie,您在每个应用程序中创建一个 DataProtectionProvider,并在应用程序之间使用一组通用/共享的 key 。

.AddCookie(options =>
{
options.Cookie.Name = ".SharedCookie";
options.Cookie.Domain = "example.com";
options.DataProtectionProvider =
DataProtectionProvider.Create(new DirectoryInfo("path-tokeys"));
});

关于c# - 在两个 ASP.NET Core 应用程序之间共享 Cookie,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49328660/

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