我正在尝试使用MVC 5 spa template
将测试网站从新Visual Studio 2013 RC
发布到 azure。
我可以让注册/登录/注销过程正常工作,除了有一个困扰我的小问题。如果我尝试使用错误的凭据登录,则返回到页面的错误字符串是"发生未知错误",而不是"用户名或密码不正确",如果ApplicationOAuthProvider.cs
中的GrantResourceOwnerCredentials
工作正常,则应如此。
在本地主机上,我得到正确的"用户名或密码不正确"消息。
来自 Azure 的错误日志:
</head>
<body>
<div id="content">
<div class="content-container">
<h3>HTTP Error 400.0 - Bad Request</h3>
<h4>Bad Request</h4>
</div>
<div class="content-container">
<fieldset><h4>Most likely causes:</h4>
<ul> <li></li> </ul>
</fieldset>
</div>
<div class="content-container">
<fieldset><h4>Things you can try:</h4>
<ul> <li>Create a tracing rule to track failed requests for this HTTP status code. For more information about creating a tracing rule for failed requests, click <a href="http://go.microsoft.com/fwlink/?LinkID=66439">here</a>. </li> </ul>
</fieldset>
</div>
<div class="content-container">
<fieldset><h4>Detailed Error Information:</h4>
<div id="details-left">
<table border="0" cellpadding="0" cellspacing="0">
<tr class="alt"><th>Module</th><td> __DynamicModule_Microsoft.Owin.Host.SystemWeb.OwinHttpModule, Microsoft.Owin.Host.SystemWeb, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35_08fdea3d-9972-4dc2-b0fc-c8ffdb2e4253</td></tr>
<tr><th>Notification</th><td> AuthenticateRequest</td></tr>
<tr class="alt"><th>Handler</th><td> ExtensionlessUrlHandler-Integrated-4.0</td></tr>
<tr><th>Error Code</th><td> 0x00000000</td></tr>
</table>
</div>
<div id="details-right">
<table border="0" cellpadding="0" cellspacing="0">
<tr class="alt"><th>Requested URL</th><td> http://[site]:80/Token</td></tr>
<tr><th>Physical Path</th><td> C:DWASFilesSites[site]VirtualDirectory0sitewwwrootToken</td></tr>
<tr class="alt"><th>Logon Method</th><td> Not yet determined</td></tr>
<tr><th>Logon User</th><td> Not yet determined</td></tr>
</table>
<div class="clear"></div>
</div>
</fieldset>
</div>
<div class="content-container">
<fieldset><h4>More Information:</h4>
The request could not be understood by the server due to malformed syntax.
<p><a href="http://go.microsoft.com/fwlink/?LinkID=62293&IIS70Error=400,0,0x00000000,9200">View more information »</a></p>
<p>Microsoft Knowledge Base Articles:</p>
我不确定它的语法格式如何不正确,因为在提交正确的登录凭据时会发送和处理相同的语法。
有没有人对此有足够的熟悉度来了解发生了什么,或者至少是一条通往知识库文章以外的答案的路径?如果还不明显,我是新手 - 这是我在 ASP.NET 的第一个网站,第一次介绍OAuth,第一次使用Azure。
由于这已经被查看了几次,我只想添加一个更新/答案。我从来没有发现问题是什么,但在更新到Visual Studio 2013 RTM后它消失了。ASP有相当多的更新。RTM 中的标识,所以我不确定是什么修复了它(它甚至可能与 VS 无关,并且通过应用于 Azure 的更新修复了我所知道的(,但希望任何遇到同样问题的人也看到它消失了。