0

I'm using this code to read status items from Twitter via LinqToTwitter.

IQueryable<Status> tweets = 
    twitterCtx.Status.Where(z => z.ScreenName == "HTM_Reisinfo" && z.Type == StatusType.User).Take(100);

But whatever number I pass to Take(), I only get 20.

Can I get more than 20?

nhahtdh
  • 55,989
  • 15
  • 126
  • 162
Michel
  • 23,085
  • 46
  • 152
  • 242

1 Answers1

1

The Twitter API does status paging through cursors, which LINQ to Twitter does support. Here's a related post with more explanation:

Return all tweets from my timeline

Community
  • 1
  • 1
Joe Mayo
  • 7,501
  • 7
  • 41
  • 60
  • huh? that's a weird notation,` tweet.Count == 200`, this way it looks like every tweet has a count property... I'll give it a try – Michel Sep 21 '13 at 18:46