I’m using the Twitter API atom format
http://search.twitter.com/search.atom?q=Name&:)&since:year-month-date&rpp=1500
but it’s only returning 100 tweets, I tried using the JSON format as well, but it only returned 100 results. Is there anything that I’m doing wrong to only get 100 results?
Yes, you’re limited on the number of results per page. In order to get more results, you have to use the
pageparameter like so:http://search.twitter.com/search.atom?q=Name&:)&since:year-month-date&rpp=1500&page=2
EDIT
Source: http://search.twitter.com/api/
In other words your
rppwon’t work as you expect because the max is 100.