Im developing in java and using the twitter4j library
And my code is
Paging paging = new Paging(1,250);
ResponseList statuses=twitter.getUserTimeline(user,paging);
but it wont give me more than 200 tweets.
I alse tried:
Paging paging = new Paging(200,400);
ResponseList statuses=twitter.getUserTimeline(user,paging);
but it returns empty.
Is it possible? is there an alternative?