I'd like to analyze all tweets from a conference I attended last week to measure the impact of the back channel conversations and how it enhanced the meeting experience. The tag is somewhat niche and only has ~2000 tweets. Most tweets were between August 3rd and August 10th, 2012.
How do I get a copy of these tweets in some plain text format?
Twitter search API only provides the last 1500 tweets and that puts me somewhere in the middle of the conference (and even that becomes more difficult as time goes by).
The Topsy API seems promising and tells me that there are 1900 tweets but does not retrieve all of them. I've tried curling for the data like so.
curl -i "http://otter.topsy.com/search.json?q=esa2012&window=a&perpage=100&offset=0" >> results_0.json
This gives me the first 100 results. The resulting json file tells me that there are 1880 tweets but the call fails after about 900 tweets. So when I run this:
curl -i "http://otter.topsy.com/search.json?q=esa2012&window=a&perpage=100&offset=1000" >> esa2012_10.json
to get tweets 1000-1100, the resulting output contains no data but also no errors. Any advice on this or other approaches to get the data I seek?