我在這找不到最近的答案。tweetsharp和api流?
Tweetsharp據報道在一些舊帖子中不支持來自Twitter用戶流api的流式傳輸。然而,github展示了一個類似於它支持流式傳輸的類。
是否tweetsharp現在支持來自Twitter,在那裏我學習C#和我會很感激有經驗的編碼器的觀點之前,我繼續花時間與工作沒有
之前流tweetsharp。
我在這找不到最近的答案。tweetsharp和api流?
Tweetsharp據報道在一些舊帖子中不支持來自Twitter用戶流api的流式傳輸。然而,github展示了一個類似於它支持流式傳輸的類。
是否tweetsharp現在支持來自Twitter,在那裏我學習C#和我會很感激有經驗的編碼器的觀點之前,我繼續花時間與工作沒有
之前流tweetsharp。
如果你搜索的內容只Twitter's streaming API,可以實現它,而不需要外部庫
JavaScriptSerializer serializer = new JavaScriptSerializer();
HttpWebRequest webRequest = (HttpWebRequest)WebRequest.Create("https://stream.twitter.com/1/statuses/sample.json");
webRequest.Credentials = new NetworkCredential("...", "...");
webRequest.Timeout = -1;
HttpWebResponse webResponse = (HttpWebResponse)webRequest.GetResponse();
StreamReader responseStream = new StreamReader(webResponse.GetResponseStream());
while (true)
{
var line = responseStream.ReadLine();
if (String.IsNullOrEmpty(line)) continue;
dynamic obj = serializer.Deserialize<Dictionary<string, object>>(line);
if(obj["user"]!=null)
Console.WriteLine(obj["user"]["screen_name"] + ": " + obj["text"]);
}
什麼是你的問題? – 2012-03-20 00:09:50
好點。 tweetsharp現在是否支持通過Twitter進行流式傳輸,在此之前它沒有 – Damo 2012-03-20 00:11:30
這可能會幫助你:[** TweetSharp - FluentTwitter去哪兒?](http://stackoverflow.com/questions/6587176/where-did- fluenttwitter-go) – bevacqua 2012-03-20 00:12:13