我有一个使用 KentorAuthServices 和 Owin 对 Azure AD 进行身份验证的工作配置,但我需要知道有关刚刚登录的用户的一些基本信息。当我使用 WSFed 作为身份验证服务时,我可以简单地处理 SecurityTokenValidated 通知,如下所示. 我如何使用 KentorAuthServices 做类似的事情?我没有看到适当的通知来提取此信息。我只需要用户登录时使用的用户名/电子邮件地址。
Notifications = new WsFederationAuthenticationNotifications
{
SecurityTokenValidated = context =>
{
string username = context.AuthenticationTicket.Identity.FindFirst(ClaimTypes.Name).Value;
FormsAuthenticationTicket authTicket = new FormsAuthenticationTicket(1, username, DateTime.Now, DateTime.Now.AddMinutes(60), true, "");
String encryptedTicket = FormsAuthentication.Encrypt(authTicket);
context.Response.Cookies.Append(FormsAuthentication.FormsCookieName, encryptedTicket);
return Task.FromResult(0);
}
}
ETA:做一些更多的挖掘我相信 AcsCommandResultCreated 是我想要挂钩的通知 - 但这永远不会触发?