문제

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?

도움이 되었습니까?

해결책

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

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top