Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.