Asp.net vNext Cookie-аутентификация
Наш веб-сайт должен пройти аутентификацию на стороннем веб-сервисе и создать cookie. Нам не нужно хранить информацию о членстве. У меня есть следующий код в Startup.cs
app.UseCookieAuthentication(options => {
options.AuthenticationScheme = CookieAuthenticationDefaults.AuthenticationScheme;
options.LoginPath = new PathString("/User/Login");
options.CookieName = "GEMSNCID";
options.ExpireTimeSpan = new System.TimeSpan(1, 0, 0);
});
и метод входа в систему
var claims = new[]
{
new Claim(ClaimTypes.Name, model.UserName),
new Claim(ClaimTypes.Country, "USA")
};
var identity = new ClaimsIdentity(claims, CookieAuthenticationDefaults.AuthenticationScheme);
ClaimsPrincipal principal = new ClaimsPrincipal(identity);
Context.Response.SignIn(CookieAuthenticationDefaults.AuthenticationScheme, principal);
return RedirectToAction("Index", "Home");
Это не работает. Может кто-нибудь, пожалуйста, помогите.
1 ответ
Я думаю, что что-то изменится в новой бета-версии. Я попробую этот код работает на моем моем примере приложения
var claims = new[]
{
new Claim(ClaimTypes.Name, model.UserName),
new Claim(ClaimTypes.Country, "USA")
};
var user = this.User as ClaimsPrincipal;
var identity = user.Identities.Where(x => x.AuthenticationType == CookieAuthenticationDefaults.AuthenticationScheme).FirstOrDefault();
if (identity == null)
{
identity = new ClaimsIdentity(claims.ToArray(), CookieAuthenticationDefaults.AuthenticationScheme);
user.AddIdentity(identity);
}
else
identity.AddClaims(claims);
if (this.Context.Response.HttpContext.User.Claims.Count() > 1)
this.Context.Response.SignIn(CookieAuthenticationDefaults.AuthenticationScheme, new ClaimsPrincipal(identity));