推特上的C#Windows窗体发布状态更新
我已经尝试了所有可以找到的解决方案,并拼凑了以下代码,这些代码总是会产生401授权错误。
当我在twitter上设置一个twitter应用程序时,它要求一个回调网址,我在我的本地机器上开发这个,需要使用Windows窗体,这样推文就可以从我的本地数据库中获取数据。我只想从我自己的帐户发推文,但是当我添加新项目时,从我的数据库中获取数据以插入到推文中。
我已经尝试将编码更改为UTF8(左前面的字符串定义被注释掉以显示在哪里),阅读后这可能是某个地方的问题。
我不知道授权是否有问题,因为我有所有必需的密钥,或者它是否与回调网址有关,如果是这样,我可以使用什么来为没有网站的Windows窗体客户端。
如果我将来自dev.twitter网站的CURL粘贴到我的浏览器中,则在使用https://api.twitter.com/1.1/statuses/update.json时会收到“错误验证数据”(默认为1,并显示已弃用此消息)。我为回调网址输入的网站是我的,但我不知道是否需要有代码才能运行此测试。
任何帮助将不胜感激我一直试图解决这个问题一周。
public static void anotherTweet(string status)
{
//GS - Get the oAuth params
//string status = status;
string postBody = "status=" +
Uri.EscapeDataString(status);
string oauth_consumer_key = "xxx";
//string oauth_nonce = Convert.ToBase64String(
//new ASCIIEncoding().GetBytes(
// DateTime.Now.Ticks.ToString()));
string oauth_nonce = Convert.ToBase64String(System.Text.Encoding.UTF8.GetBytes(DateTime.Now.Ticks.ToString()));
string oauth_signature_method = "HMAC-SHA1";
string oauth_token =
"xxx";
string oauth_version = "1.0";
TimeSpan ts = DateTime.UtcNow -
new DateTime(1970, 1, 1, 0, 0, 0, 0);
string oauth_timestamp =
Convert.ToInt64(ts.TotalSeconds).ToString();
//string oauth_version = "1.0";
//GS - When building the signature string the params
//must be in alphabetical order. I can't be bothered
//with that, get SortedDictionary to do it's thing
SortedDictionary<string, string> sd =
new SortedDictionary<string, string>();
sd.Add("status", status);
sd.Add("oauth_version", oauth_version);
sd.Add("oauth_consumer_key", oauth_consumer_key);
sd.Add("oauth_nonce", oauth_nonce);
sd.Add("oauth_signature_method", oauth_signature_method);
sd.Add("oauth_timestamp", oauth_timestamp);
sd.Add("oauth_token", oauth_token);
//GS - Build the signature string
string baseString = String.Empty;
baseString += "POST" + "&";
baseString += Uri.EscapeDataString(
"https://api.twitter.com/1.1/statuses/update.json")
+ "&";
foreach (KeyValuePair<string,string> entry in sd)
{
baseString += Uri.EscapeDataString(entry.Key +
"=" + entry.Value + "&");
}
//GS - Remove the trailing ambersand char, remember
//it's been urlEncoded so you have to remove the
//last 3 chars - %26
baseString =
baseString.Substring(0, baseString.Length - 3);
//GS - Build the signing key
string consumerSecret =
"xxx";
string oauth_token_secret =
"xxx";
string signingKey =
Uri.EscapeDataString(consumerSecret) + "&" +
Uri.EscapeDataString(oauth_token_secret);
//GS - Sign the request
HMACSHA1 hasher = new HMACSHA1(
new ASCIIEncoding().GetBytes(signingKey));
//string signatureString = Convert.ToBase64String(
//hasher.ComputeHash(
// new ASCIIEncoding().GetBytes(baseString)));
string signatureString = Convert.ToBase64String(
hasher.ComputeHash(
System.Text.Encoding.UTF8.GetBytes(baseString)));
//GS - Tell Twitter we don't do the 100 continue thing
ServicePointManager.Expect100Continue = false;
//GS - Instantiate a web request and populate the
//authorization header
HttpWebRequest hwr =
(HttpWebRequest)WebRequest.Create(
@"https://api.twitter.com/1.1/statuses/update.json");
string authorizationHeaderParams = String.Empty;
authorizationHeaderParams += "OAuth ";
authorizationHeaderParams += "oauth_nonce=" + "\"" +
Uri.EscapeDataString(oauth_nonce) + "\",";
authorizationHeaderParams +=
"oauth_signature_method=" + "\"" +
Uri.EscapeDataString(oauth_signature_method) +
"\",";
authorizationHeaderParams += "oauth_timestamp=" + "\"" +
Uri.EscapeDataString(oauth_timestamp) + "\",";
authorizationHeaderParams += "oauth_consumer_key="
+ "\"" + Uri.EscapeDataString(
oauth_consumer_key) + "\",";
authorizationHeaderParams += "oauth_token=" + "\"" +
Uri.EscapeDataString(oauth_token) + "\",";
authorizationHeaderParams += "oauth_signature=" + "\""
+ Uri.EscapeDataString(signatureString) + "\",";
//authorizationHeaderParams += "oauth_version=" + "\"" +
//Uri.EscapeDataString(oauth_version) + "\"";
hwr.Headers.Add(
"Authorization", authorizationHeaderParams);
//GS - POST off the request
hwr.Method = "POST";
hwr.ContentType = "application/x-www-form-urlencoded";
Stream stream = hwr.GetRequestStream();
//byte[] bodyBytes =
//new ASCIIEncoding().GetBytes(postBody);
byte[] bodyBytes = System.Text.Encoding.UTF8.GetBytes(postBody);
stream.Write(bodyBytes, 0, bodyBytes.Length);
stream.Flush();
stream.Close();
//GS - Allow us a reasonable timeout in case
//Twitter's busy
hwr.Timeout = 3 * 60 * 1000;
try
{
HttpWebResponse rsp = hwr.GetResponse()
as HttpWebResponse;
//GS - Do something with the return here...
}
catch (WebException e)
{
MessageBox.Show(e.Message);
}
}
答案 0 :(得分:0)
如果您只想从自己的帐户发帖,只需在dev.twitter.com上创建一个令牌即可。 然后,您可以直接在代码中使用新应用程序的凭据。
与之前的评论一样,我建议使用OAuth或Twitter库。