I want to get tweeter tweets with pagination.
For example when page load it will get first 20 tweets then when we scroll down then it will get next 20 tweets.
I have implemented below codes to get tweets :
$tweets_by_username = $connection->get('statuses/user_timeline', array('screen_name' => $screen_name,'count' => 1500));
Thanks.