using since_id and max_id in Twitter API
问题 I hope I'm overthinking this and there's an obvious solution. From the API (GET statuses/user_timeline) max_id - Returns results with an ID less than (that is, older than) or equal to the specified ID. "or equal to" means it will include the tweet with ID that I sent as my max_id parameter. -- My question is this: if I store the id of my oldest tweet (from a previous request), how can I subtract 1 from this id to exclude it from being returned in my next request? The obvious solution would be