OpenID links error

前端 未结 1 1991
野趣味
野趣味 2021-01-26 13:31

I am trying to integrate openid authentication in asp.net 4 following this article. I have proceeded as was demonstrated in the article. The problem i face is that only openid l

相关标签:
1条回答
  • 2021-01-26 13:54

    If you are following the example you referred to then in method HandleRelyingPartyRequest, change this line:

    var request = openid.CreateRequest(Request.Form["openid_identifier"]); to

    var request = openid.CreateRequest(Request.Form["openid_username"]);

    and also remove any general exception you have in that method. That should resolve the issue.

    Thanks, Raju

    0 讨论(0)
提交回复
热议问题