If you're using Twitter's search API but need to collect a specific time range of data, you can still use max_id and since_id by knowing how to convert a twitter id into time:
Python:
(id >> 22) + 1288834974657) = tweet time in millis
(ms - 1288834974657) << 22 = min tweet id
Conversation
No that still works for search, this is useful for user timelines
1
1
Show replies


