How to show last 20 tweets with twitter api on Android OS, if tweets are old?
I’ve to use twitter api, but its returned only recent tweets.
How to show last 20 tweets with twitter api on Android OS, if tweets
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Method
twitter.getMentions()returns by default last 20 updates. You can vary the behavior of this function usingsetSinceDateandsetSinceIdmethods. So in your case you can set the date from which you want to search tweets. But remember that this function will return only 20 tweets that are started from this date.