I am trying to do something that appears to be simple, but I can't figure out a way around it without breaking the rate limit.
The first API call I'm making is the get a user's friend's IDs.
$friends = $to->OAuthRequest('http://twitter.com/friends/ids.json', array(), 'GET');
That returns a huge string with IDs. In my case, I'm following 1035 people, so I get 1035 IDs.
$friends = explode(",",$friends)
This gives me an array with all of their IDs.
But how do I pull the user info from all 1035 of those people without breaking the 150 API-call limit?