对特定域的Active Directory身份验证限制[ASP.NET]

时间:2019-04-03 12:41:04

标签: asp.net azure authentication active-directory adal

我创建了一个具有Active Directory身份验证的ASP.NET Web应用程序。 当我输入我的电子邮件 me@domain.com 时,它可以正常工作,它将重定向到正确的联合身份验证服务。但是我想自动重定向并阻止其他Microsoft用户登录。我应该在此登录方法中添加些什么,请重定向到正确的文档(如果有)。

 public void SignIn()
    {
        // Send an OpenID Connect sign-in request.
        if (!Request.IsAuthenticated)
        {
            HttpContext.GetOwinContext().Authentication.Challenge(new AuthenticationProperties { RedirectUri = "/",  }, OpenIdConnectAuthenticationDefaults.AuthenticationType);
        }
    }

0 个答案:

没有答案