在调试期间关闭Single -Sign-On

时间:2014-04-29 17:18:11

标签: authentication azure azure-active-directory

我想知道是否可以在调试模式下为我的MVC项目关闭单点登录,并在我们发布网站时将其打开?

2 个答案:

答案 0 :(得分:1)

如果没有Auth,您在开发过程中无法在应用中运行多个场景。假设您的标记是Azure AD集成应用程序,您可以向Azure AD中的应用程序添加localhost答复URL,并在开发模式和prod模式下启用SSO。

如果您反复输入凭据而烦恼,我推荐使用roboform:)。

希望有所帮助。

答案 1 :(得分:0)

只需要在web.config中评论“拒绝用户”

<system.web>
<authentication mode="None" />
<authorization>
  <!--<deny users="?" />-->
</authorization>
<compilation debug="true" targetFramework="4.5" />
<httpRuntime targetFramework="4.5" requestValidationMode="4.5" />
</system.web>