第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

Identity Manager SignOutAsync 會(huì)話在服務(wù)器端仍然活動(dòng)

Identity Manager SignOutAsync 會(huì)話在服務(wù)器端仍然活動(dòng)

C#
拉丁的傳說 2023-09-09 16:32:45
如果用戶保存其 cookie、注銷,然后將其 cookie 導(dǎo)入回瀏覽器,則他們將成功登錄。我怎樣才能SigninManager殺死他們的會(huì)話服務(wù)器端呢?我讀過有關(guān)放棄的內(nèi)容,但似乎不可用。這是我的代碼:await _signInManager.SignOutAsync(); HttpContextAccessor httpCon = new HttpContextAccessor(); httpCon.HttpContext.Session.Clear();
查看完整描述

1 回答

?
溫溫醬

TA貢獻(xiàn)1752條經(jīng)驗(yàn) 獲得超4個(gè)贊

這是正常的過程。要在注銷后使身份 cookie 失效,您可以SecurityStamp按照以下步驟更新并檢查它:


CustomCookieAuthenticationEvents


public class CustomCookieAuthenticationEvents : CookieAuthenticationEvents

{

    private readonly SignInManager<IdentityUser> _signInManager;


    public CustomCookieAuthenticationEvents(SignInManager<IdentityUser> signInManager)

    {

        // Get the database from registered DI services.

        _signInManager = signInManager;

    }


    public override async Task ValidatePrincipal(CookieValidatePrincipalContext context)

    {

        var userPrincipal = context.Principal;


        var user = await _signInManager.ValidateSecurityStampAsync(userPrincipal);


        if (user == null)

        {

            context.RejectPrincipal();


            await context.HttpContext.SignOutAsync(

                IdentityConstants.ApplicationScheme);

        }

    }

}

注冊(cè)并配置CustomCookieAuthenticationEvents


services.AddDefaultIdentity<IdentityUser>()

    .AddRoles<IdentityRole>()

    .AddEntityFrameworkStores<ApplicationDbContext>();

services.ConfigureApplicationCookie(options =>

{

    options.EventsType = typeof(CustomCookieAuthenticationEvents);

});

services.AddScoped<CustomCookieAuthenticationEvents>();

退出流程


await _signInManager.SignOutAsync();

var user = await _userManager.GetUserAsync(User);

await _userManager.UpdateSecurityStampAsync(user);

_logger.LogInformation("User logged out.");


查看完整回答
反對(duì) 回復(fù) 2023-09-09
  • 1 回答
  • 0 關(guān)注
  • 165 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)