我有一個ASP.net核心(的.NET Framework 4.7)的應用程序正在使用像什麼是this link如何在Cookie認證的同時使用asp.net核心Windows認證?
app.UseCookieAuthentication(new CookieAuthenticationOptions()
{
AuthenticationScheme = "CookieAuthentication",
LoginPath = new PathString("/Login/"),
AccessDeniedPath = new PathString("/Login/"),
AutomaticAuthenticate = true,
AutomaticChallenge = true
});
cookie認證我想要做的是允許與Cookie的使用Windows身份驗證。因此,如果用戶在公司的域中,則他/她不必輸入用戶名和密碼。但是如果他們來自外部域,則他們被重定向到登錄頁面並輸入他們的用戶名和密碼以被認證。
您目前如何驗證外部域用戶? – Win
我通過cookie認證來做到這一點。 – Baso