I am attempting to retrieve the oldest replies to a specific user from a specificy status id.
Sample Data: status_id: 1005 status_id: 1004 status_id: 1003 status_id: 1002 status_id: 1001 status_id: 1000 When accessing the API with "statuses/user_timeline" and a since_id of 1000 and count of 2 the newest status_ids, 1005 and 1004, are returned. What is the best way to retrieve the oldest status_ids - 1001 and 1002? My application will receive many hundreds of thousands replies on an ongoing basis where it is only necessary to retrieve of few of the "oldest" replies since a particular status_id. Is there a way to do this without attempting to iterate through EVERY status? There doesn't seem to be a page count value returned.
