我正在使用Microsoft.Web.WebPages.OAuth
. 我能够注册Google
, Facebook
, Twitter
, Stack Exchange
, MyOpenID
...
现在我正在尝试添加Microsoft Live
,所以我注册了:
OAuthWebSecurity.RegisterMicrosoftClient("applicationID", "key");
并打电话给
OAuthWebSecurity.RequestAuthentication("microsoft", Url.Action("Authorization", new { returnUrl = "/" }));
至此一切正常,我被重定向到登录页面。问题是当我回到
OAuthWebSecurity.VerifyAuthentication();
它说:
远程服务器返回错误:(400) 错误请求。
我需要做什么?