Mauri
unread,Nov 20, 2009, 4:36:07 PM11/20/09Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Twitter Development Talk
Is there a way to get multiple user's information with one call? My
page is running slow and it looks like it would take a second or two
less if I could do this with one call.
Basically, the page shows a list of your followers, their name and
profile pictures by loading the user's followers list and getting each
follower's information
Here is part of the code
for($b=0; $b<count($followers); $b++) {
$moreinfo = $connection->get('users/show', array('user_id' =>
$followers[$b]));
$moreinfo = json_decode($moreinfo, true);
...
}
Thanks in advance