我正在編寫一個web應用程序以在Google Buzz上自動關閉。gdata未知授權標頭
我寫了一個C#庫來管理「Oauth舞蹈」,並且它工作正常,我可以得到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#代碼不起作用 相同的數據? 任何想法如何解決它?
感謝, 斯特凡諾
你解決了嗎?對於我正在面臨與配置API相同的問題。 – JochenJung 2010-11-30 13:03:45