请帮忙!!无法弄清楚为什么 MSDN 给出的这个简单代码不起作用....
我在这篇 MSDN 文章中给出的 GetAccessToken() 中使用以下代码来获取要在 Windows 通知中使用的访问令牌,但它返回“错误请求 400”
PACKAGE_SECURITY_IDENTIFIER、CLIENT_SECRET 是应用注册到 Windows Store Dashboard 时获得的值
string urlEncodedSid = HttpUtility.UrlEncode(PACKAGE_SECURITY_IDENTIFIER);
string urlEncodedSecret = HttpUtility.UrlEncode(CLIENT_SECRET);
string body = String.Format("grant_type=client_credentials&client_id={0}&client_secret={1}&scope=notify.windows.com", urlEncodedSid, urlEncodedSecret);
string response;
using (WebClient client = new WebClient())
{
client.Headers.Add("Content-Type", "application/x-www-form-urlencoded");
response = client.UploadString("https://login.live.com/accesstoken.srf", body);
}
任何帮助将不胜感激.......