What I'm trying to do is display some search results and sort them by users.
I'm using now
$to->OAuthRequest('http://search.twitter.com/search.json', array('q' => 'search-term'), 'GET');
to get the results, but I canβt get the user information like follower_count etc., so I would take each user_id result and run it through http://twitter.com/users/show.xmlto get the rest of the information.
The problem is that if I get 50 results this way, then 50 API calls, which are 1/3 of the hourly limit ...
Is there a better way to do this?
source
share