---------
PHP и OData: пересаживаемся с велосипедов на технологию от Microsoft
http://habrahabr.ru/post/267811/
--
добавление минимальной овин авторизации
http://weblog.west-wind.com/posts/2015/Apr/29/Adding-minimal-OWIN-Identity-Authentication-to-an-Existing-ASPNET-MVC-Application
-----------------
Авторизация
https://toster.ru/q/66474
peopleManager.GetLogin(model.Login, model.Pasw);
var claims = new List<Claim>();
claims.Add(new Claim(ClaimTypes.Email, model.Login));
var id = new ClaimsIdentity(claims, DefaultAuthenticationTypes.ApplicationCookie);
var ctx = Request.GetOwinContext();
var authenticationManager = ctx.Authentication;
authenticationManager.SignIn(id);
http://habrahabr.ru/post/209964/ - Owin and Katana Хабрахабр
http://brockallen.com/2013/10/24/a-primer-on-owin-cookie-authentication-middleware-for-the-asp-net-developer/ - Авторизация с помощью Owin MVC5
Комментариев нет:
Отправить комментарий