I want to return ALL tweets that I have ever published on my timeline.
I use the Linq To Twitter library like this -
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));
This works fine and returns the first 200. However, the first 200 seem to be the maximum that I can get, since there is a way to return 1000 words? It seems that there is no next cursor movement
option, for example, in other parts of this library to go to the next pages, etc.
source share