gpt4 book ai didi

c# - ASP.NET 核心 : Session Id Always Changes

转载 作者:行者123 更新时间:2023-12-05 00:47:24 24 4
gpt4 key购买 nike

今天启动了一个全新的 ASP.NET Core 站点。按照说明添加 session 。我们在索引页面上打印出 Session ID,它始终是唯一的。

我认为这可能是 cookie 合规性,所以我在 Chrome 的高级设置和调试器中删除了所有 cookie。但横幅不会再次出现让我接受。

我也尝试简单地禁用 CheckConsentNeeded,但这也没有任何影响。

除了上面描述的调整之外,几乎是默认项目和 MSDN 的副本:

    // This method gets called by the runtime. Use this method to add services to the container.
public void ConfigureServices(IServiceCollection services)
{
services.AddDistributedMemoryCache();

services.AddSession(options =>
{
// Set a short timeout for easy testing.
options.IdleTimeout = TimeSpan.FromSeconds(10);
options.Cookie.HttpOnly = true;
//options.Cookie.SecurePolicy = CookieSecurePolicy.Always; //require https
// Make the session cookie essential
options.Cookie.IsEssential = true;
});

services.Configure<CookiePolicyOptions>(options =>
{
// This lambda determines whether user consent for non-essential cookies is needed for a given request.
options.CheckConsentNeeded = context => false; //true;
options.MinimumSameSitePolicy = SameSiteMode.None;
});


services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_1);
}

// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
}
else
{
app.UseExceptionHandler("/Home/Error");
app.UseHsts();
}

app.UseHttpsRedirection();
app.UseStaticFiles();
app.UseCookiePolicy();
app.UseSession();

app.UseMvc(routes =>
{
routes.MapRoute(
name: "default",
template: "{controller=Home}/{action=Index}/{id?}");
});
}

最佳答案

Wiktor Zychla 在第一条评论中是正确的:您必须指定要粘贴的 ID 的任何数据。

我只是将任何数据分配给我的 Controller 中的 session :

        public IActionResult Index()
{
HttpContext.Session.Set("What", new byte[] { 1, 2, 3, 4, 5 });
}

之后,HttpContext.Session.Id 并没有像预期的那样发生变化。

作为我第一次从 ASP.NET Framework 涉足 ASP.NET Core,我没想到会这样,而且我相信我不会是最后一个!

关于c# - ASP.NET 核心 : Session Id Always Changes,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57332630/

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