For your consideration :
An asynchronous method which accepts a search string and a max and min ID and a callback address, and returns all the tweets which match that search string between the two IDs. The max ID must be an ID of a Tweet which is a positive match for the search string.
The number of Tweets returned should not be rate limited, and instead should wait and continue to collect in the background until all data is recovered. The method should use the callback address to inform on progress.
The method should take into account that data may be needed for multiple search patterns, so more than one instance may be needed to be run in parallel. This might mean for instance that the callback address may be shared so one of the parameters might need to identify it (for example it could pass the search string back).
Thanks
An asynchronous method which accepts a search string and a max and min ID and a callback address, and returns all the tweets which match that search string between the two IDs. The max ID must be an ID of a Tweet which is a positive match for the search string.
The number of Tweets returned should not be rate limited, and instead should wait and continue to collect in the background until all data is recovered. The method should use the callback address to inform on progress.
The method should take into account that data may be needed for multiple search patterns, so more than one instance may be needed to be run in parallel. This might mean for instance that the callback address may be shared so one of the parameters might need to identify it (for example it could pass the search string back).
Thanks