I'm writing a little app to remove inactive twitter accounts from my follow list.
I currently follow 20,000 people.
I'm looking at the GET statuses/public_timeline API call, which I could use to get the timeline of each person I follow and if their last post is from > 30 days ago, I could "unfollow" them.
However, this is a rate-limited call, so I believe I will run afoul of twitter's API limit. Is there a better / more clever way to implement this? Probably with a different call?