json - Show last and early tweet with Twitter API android -


Hello I just learn the API Twitter in Android. At the beginning of my application, 20 Tweets are shown with this URL

I have been shown that want to display the last 20 before 20 Tweets (With load endless) and all new tweets (with the bridge to refresh) after the first 20 of tweet but I do not know how to get the URL or method 20 last or latest Tweet. how does it work? Sorry for my english.

You need this page: found on this well documented page ()

The URI you want is:

https://api.twitter.com/1.1/statuses/user_timeline.json?screen_name=name&count=20&max_id= [ Low-id-to-previous-batch]

Comments