null ClaimsResponse with DotNetOpenAuth in ASP.NET MVC 2 application
I'm trying to get DotNetOpenAuth (latest version) to work with ASP.NET MVC 2 website. I get the first part working, the action is invoked when user selects OpenID provider, I get correct identifier passed in, I then get correctly redirected to the provider website, I get redirected back to my website but here's the problem. The claims I requested are null (see the code below). public ActionResult TryAuth(string openid_identifier) { var openid = new OpenIdRelyingParty(); var response = openid.GetResponse(); if(response== null) { var req = openid.CreateRequest(openid_identifier); req