What steps will reproduce the problem?
1. Twitter Search API supports max_id parameter on Search, but java-twitter
does not support
this on the SearchRequest. This parameter is not documented but has been
confirmed through
testing and by the Twitter API Google Group
What is the expected output? What do you see instead?
Search API will return all tweets with a status_id up to and including the
"max_id", if specified.
What version of the product are you using? On what operating system?
java-twitter-0.9-SNAPSHOT
Please provide any additional information below.
Adding the following code in SearchRequest.java will do the trick
-----
public Builder maxId(long maxId) {
return parameter("max_id", Long.toString(maxId));
}
Original issue reported on code.google.com by twitcaps...@gmail.com on 15 Aug 2009 at 10:02
Original issue reported on code.google.com by
twitcaps...@gmail.com
on 15 Aug 2009 at 10:02