I'm making a demo app and I want 800 tweets to show of a particular user. I know that twitter api allows only 200 tweets per call and we can get max 800 tweets.
IEnumerable<TwitterStatus> homeTweets = service.ListTweetsOnHomeTimeline(new ListTweetsOnHomeTimelineOptions { Count = 200 });
Through this i'm able to get the 200 tweets in a call but not able to get the max 800 tweets.
Basically I want to fetch max 800 tweets from ListTweetsOnHomeTimeline() method.
How to get it?
Any help will be appreciated