0

我正在使用 C# 中的 Windows Live SDK 尝试直接调用其余服务以获取我的 oAuth 令牌,但我收到了 401 错误。未经授权。

我在https://manage.dev.live.com/上将我的应用程序注册为桌面应用程序并发布,因此我有自己的客户端 ID 和密钥。

从我的桌面应用程序中,我打开一个 Internet Explorer 窗口进行实时登录并获取我的验证码。

使用该代码、密钥和 clientID,我以这种方式调用 AccessToken.aspx:

try
{
    string requestUrl = "https://consent.live.com/AccessToken.aspx";

    // Request the access token.
    string postData = string.Format("wrap_client_id={0}&wrap_client_secret={1}&wrap_verification_code={2}",
                                      clientId,
                                      secretKey,
                                      verificationCode);

    postData = HttpUtility.UrlEncode(postData);
    byte[] postDataEncoded = System.Text.Encoding.UTF8.GetBytes(postData);

    WebRequest req = HttpWebRequest.Create(requestUrl);
    req.Method = "POST";
    req.ContentType = "application/x-www-form-urlencoded";
    req.ContentLength = postDataEncoded.Length;

    Stream requestStream = req.GetRequestStream();
    requestStream.Write(postDataEncoded, 0, postDataEncoded.Length);

    WebResponse res = req.GetResponse();

    string responseBody = null;

    using (StreamReader sr = new StreamReader(res.GetResponseStream(), Encoding.UTF8))
    {
        responseBody = sr.ReadToEnd();
    }

    // Process FORM POST.
    NameValueCollection responseCollection = System.Web.HttpUtility.ParseQueryString(responseBody);

    return responseCollection["wrap_access_token"];
}
catch (Exception ex)
{
    throw ex;
}

我做错了什么?

提前感谢您提供的任何帮助。

4

1 回答 1

-1

远程服务器返回错误:(401) Unauthorized

于 2011-03-21T14:48:42.447 回答