Hi, I'm trying to create a widget on my blog that grabs about 20 twitter accounts and displays the last two posts from each account. At the moment I have a jquery based version that runs a for loop for each account. Naturally I bumped up against the 150 requests per hours maximum pretty fast. My question is two fold:
Is there a more efficient way to grab this info? Say opening a twitter account, follow all the users I need and then just reference the friends aspect of my account?
Is there a way to cache the JSON response so I don't bump into the limit? Or do I have to write the entire results to a file and reference that once the limit has been hit?
I should also mention the platform I'm working on is Wordpress/LAMP but I don't care what the technology end up being, I'm open to flash, etc to make this work.
Thanks all