3

请帮忙!!无法弄清楚为什么 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);
}

任何帮助将不胜感激.......

4

3 回答 3

3

我怀疑问题与不正确的包标识符和/或不正确的客户端密码有关。

从 MSDN 页面推送通知服务请求和响应标头

RESPONSE          DESCRIPTION
---------------   --------------------------
200 OK            The request was successful.
400 Bad Request   The authentication failed. 

更新- 我使用 FAKE 凭据运行了问题中的代码。

这是原始 HTTP 请求:

POST https://login.live.com/accesstoken.srf HTTP/1.1
Content-Type: application/x-www-form-urlencoded
Host: login.live.com
Content-Length: 88
Expect: 100-continue
Connection: Keep-Alive

grant_type=client_credentials&client_id=test&client_secret=test&scope=notify.windows.com

这是服务器的 RAW 响应:

HTTP/1.1 400 Bad Request
Cache-Control: no-store
Content-Length: 66
Content-Type: application/json
Server: Microsoft-IIS/7.5
X-WLID-Error: 0x80045A78
PPServer: PPV: 30 H: BAYIDSLGN2A055 V: 0
Date: Thu, 21 Mar 2013 12:34:19 GMT
Connection: close

{"error":"invalid_client","error_description":"Invalid client id"}

您会注意到响应是400。还有一些 json 指示错误的类型。就我而言,错误是Invalid client id。你可能想看看你的回答——它会让你知道发生了什么。

我使用Fiddler来调试请求/响应。

于 2013-03-20T19:56:40.783 回答
2

我找到了错误响应的原因。实际上是错误的 PACKAGE_SECURITY_IDENTIFIER 和 CLIENT_SECRET。

不要键入值。因为关联的 ASCII 值不同。因此,最好直接复制和粘贴。

您可能会通过简单的代码片段获得访问令牌。

干杯

于 2013-03-29T10:37:39.897 回答
0

如果您使用的是新的 HttpClient API,并且您确定您已正确复制并粘贴了 SID/secret 值,那么您可能会因为编码而遇到此问题,前提是您使用FormUrlEncodedContent该类作为 POST 的内容手术。

MSDN 文档中的示例相反,您不希望在将 SID 和机密值添加到 KeyValuePair 集合之前对其进行 URL 编码。这是因为FormUrlEncodedContent该类隐含了编码,尽管我没有看到任何有关此行为的文档。希望这可以节省一些时间,因为我整晚都在努力解决这个问题......

于 2014-08-05T05:26:53.050 回答