Here is my code for adding the “since” and “until” parameters to the request. I’m using twitter’s hbc java library’s.
StatusesFilterEndpoint endpoint = new StatusesFilterEndpoint();
endpoint.addQueryParameter(“since”, “10-10-2014”);
endpoint.addQueryParameter(“until”, “10-29-2014”);
What I mean by when I say the request doesn’t work is that the request goes through and I receive tweets, it’s just that I get tweets that were created at random times, not ones that were created in the time I specified in my request. I’m not receiving any error codes from their server so it seems like their server is just ignoring these parameters. I want to be able to query for the most recently created tweets and it seems like this is the only way to do so.
Thanks