我正在使用本教程:http://www.dotnetopenauth.net/developers/help/programmatic-openid-relying-party/
我的GetResponse()调用总是返回null,我还将localhost添加到web.config中的白名单中。我觉得我做的一切都是正确的无法在线找到解决方案。在调试时我查看openid对象。我有2个发现服务..
我从JS点击中调用下面的方法。
[HttpPost]
public void PingOpenID()
{
var openid = new OpenIdRelyingParty();
IAuthenticationResponse response = openid.GetResponse();
if (response != null)
{
switch (response.Status)
{
case AuthenticationStatus.Authenticated:
FormsAuthentication.RedirectFromLoginPage(
response.ClaimedIdentifier, false);
break;
case AuthenticationStatus.Canceled:
ModelState.AddModelError("loginIdentifier",
"Login was cancelled at the provider");
break;
case AuthenticationStatus.Failed:
ModelState.AddModelError("loginIdentifier",
"Login failed using the provided OpenID identifier");
break;
}
}
}
答案 0 :(得分:1)
您的问题提到您从“JS点击”中调用此方法。这不是OpenID的工作原理。 OpenID响应消息来自提供程序,通过重定向到 RP ,而不是浏览器上运行的某些JS。 GetResponse()
可能返回null,因为您的JS向RP发送空POST并且不包含OpenID有效负载。
请注意,有一些奇怪的情况,RP的浏览器的javascript确实将OpenID响应“转发”到RP服务器,但这非常先进,不太可能是你想要从你的问题听起来完成的事情。< / p>