这是创建我需要的http://www.asp.net/aspnet/overview/owin-and-katana/owin-oauth-20-authorization-server的一个很好的例子(参见示例的源代码)
我的问题是什么:
我尝试使用与主站点的cookie名称相同的cookie名称配置 CookieAuthenticationOptions ,并检查主站点域的cookie中是否为 .aaa.com ...但在代码= null
中没有任何事情和变量 ticketvar authentication = HttpContext.GetOwinContext().Authentication;
var ticket = authentication.AuthenticateAsync(Auth.AuthenticationType).Result;
或者我可能需要另一个库,而不是基于OWIN?我看过DotNetOpenAuth库但似乎是它的OAuth客户端,而不是服务器。