5

我正在编写一个网络应用程序以在 Google Buzz 上自动发布。

我编写了一个 C# 库来管理“Oauth dance”,它运行良好,我可以获得 oauth_token 和 oauth_token_secret。

我使用 www.googlecodesamples.com/oauth_playground/ 来验证我的 oauth_token 和 oauth_token_secret 并且它工作正常。我用 GET 和https://www.googleapis.com/buzz/v1/activities/@me/@self对其进行了测试 以获取用户的流,它可以工作。

但现在

我正在尝试使用我的 C# 库做同样的事情,但我总是得到这个错误:

<?xml version="1.0" encoding="UTF-8"?>
<errors xmlns="http://schemas.google.com/g/2005">
   <error>
      <domain>GData</domain>
      <code>invalid</code>
      <location type="header">Authorization</location>
      <internalReason>Unknown authorization header</internalReason>
   </error>
</errors>

我的请求标头与操场上的请求标头相同。

Accept: */*
Content-Type: application/atom+xml
Authorization: OAuth oauth_version="1.0", oauth_nonce="9216320",
oauth_timestamp="1283430867", oauth_consumer_key="www.mysite.com",
oauth_token="1%2FZodlNmPP96GT11vYaWA0y6QoqKLqNqZ8bNmxknZZZc",
oauth_signature_method="HMAC-SHA1",
oauth_signature="Tuu82feKNWa4CxoDUyvtIEVODRA%3D"
GData-Version: 2.0

这是 C# 代码:

string headAuth = "Authorization: OAuth oauth_version=\"1.0\", oauth_nonce=\"9216320\", oauth_timestamp=\"1283430867\",
oauth_consumer_key=\"www.mysite.com\", oauth_token=
\"1%2FZodlNmPP96GT11vYaWA0y6QoqKLqNqZ8bNmxknZZZc\",
oauth_signature_method=\"HMAC-SHA1\", oauth_signature=
\"Tuu82feKNWa4CxoDUyvtIEVODRA%3D\"";

HttpWebRequest req1 =(HttpWebRequest)HttpWebRequest.Create("https://www.googleapis.com/buzz/v1/activities/@me/@self");
req1.Method = "GET";
req1.Accept = "*/*";
req1.ContentType = "application/atom+xml";
req1.Headers.Add("Authorization", headAuth);
req1.Headers.Add("GData-Version", "2.0");

try
{
    HttpWebResponse response1 =(HttpWebResponse)req1.GetResponse();
    using (var sr = new StreamReader(response1.GetResponseStream()))
    {
        string test_1 = sr.ReadToEnd();
    }
}
catch (WebException e)
{
    Stream objStream = e.Response.GetResponseStream();
    StreamReader objStreamReader = new StreamReader(objStream);
    string err = objStreamReader.ReadToEnd();
}

为什么使用相同的数据它在操场上可以正常工作而在 C# 代码中却不能工作?知道如何解决吗?

谢谢,斯特凡诺

4

1 回答 1

0

看起来您在标题中添加了两次 OAuth 授权。

在您的标题字符串中string headAuth = "Authorization: OAuth,当您添加标题时,req1.Headers.Add("Authorization", headAuth);您将再次添加它。

于 2012-06-26T08:19:00.610 回答