Tag: information retrieval

从我的时间轴返回所有推文

我希望退回我在时间轴上发布的所有推文。 我正在使用Linq To Twitter库 – var statusTweets = from tweet in twitterCtx.Status where tweet.Type == StatusType.User && tweet.UserID == MyUserID && tweet.Count == 200 select tweet; statusTweets.ToList().ForEach( tweet => Console.WriteLine( “Name: {0}, Tweet: {1}\n”, tweet.User.Name, tweet.Text)); 这工作正常并带回前200.然而前200似乎是我可以检索的最大值,因为有一种方法可以恢复说1000? 似乎没有next cursor movement选项,就像在该库的其他部分中移动到下一页等。