I am using Microsoft.Web.WebPages.OAuth. I was able to register Google, Facebook, Twitter, Stack Exchange, MyOpenID...
Now I am trying to add Microsoft Live, so I registered:
OAuthWebSecurity.RegisterMicrosoftClient("applicationID", "key");
and called
OAuthWebSecurity.RequestAuthentication("microsoft", Url.Action("Authorization", new { returnUrl = "/" }));
To this point everything is working fine, I get redirected to the login page. The problem is when I come back to
OAuthWebSecurity.VerifyAuthentication();
It says:
The remote server returned an error: (400) Bad Request.
What do I have to do?