If using Cookie authentication with the .AddIdentity, should I change the default schema of the cookie ? [.NET 8]
Hi, I'm trying to figure out if I should change the default schema given to the cookie when using .AddIdentity<TUser, TRole>
because the default schema here is .AddCookie(IdentityConstants.ApplicationScheme)
( = "Identity" + ".Application"
) instead of CookieAuthenticationDefault.AuthenticationScheme
( = "Cookie"
) ?
Maybe I'm confused, but is there a difference between the 2 ? Does using the cookie one makes using cookie the default and not the other one ?