Hi,
Imagine I am having an account with 5k+ tweets. Using user_timeline, I can get upto 3200 tweets.
get(‘statuses/user_timeline/’, array(‘count’ => 200, ‘page’ => 1));
get(‘statuses/user_timeline/’, array(‘count’ => 400, ‘page’ => 2));
until 3200. Is this the right approach?
Also, Imagine I deleted the latest 1k tweets. So, will I be able to get 3200 tweets from the timeline again so that I can access the order tweets?
Hope my question is clear.
Thanks