流鸣叫与LinqToTwitter C#(Streaming Tweets with LinqToT

2019-10-19 04:24发布

是否有可能获得在C#中使用LinqToTwitter实时Twitter用户的微博列表

以下是我用它来获得用户的Twitter信息没有实时流的代码。

   var rawTwitterItems = twitterContext.Status.Where(x => x.ScreenName == "BloombergNews" && x.Type == StatusType.User);
   var items= a.ToList();

Answer 1:

是的,LinqToTwitter不支持流媒体。 参见流文档例如用户状态信息 :

Console.WriteLine("\nStreamed Content: \n");
int count = 0;

await
    (from strm in twitterCtx.Streaming
     where strm.Type == StreamingType.User
     select strm)
    .StartAsync(async strm =>
    {
        string message = 
            string.IsNullOrEmpty(strm.Content) ? 
                "Keep-Alive" : strm.Content;
        Console.WriteLine(
            (count + 1).ToString() + 
            ". " + DateTime.Now + 
            ": " + message + "\n");

        if (count++ == 5)
            strm.CloseStream();
    });


文章来源: Streaming Tweets with LinqToTwitter C#