Can you explain why im following 3 non existing accounts?
I used the snippet below and got 3 users ids
$friendsX = $T->get('friends/ids', array('users_id' => '14868835'));
$friends = $friendsX->ids;
echo $friends." - ";
$newArray = array_unique($friends);
foreach($newArray as $ID){
$GetUser = $T->get('users/show',array('user_id' => $ID));
$Uname = $GetUser->screen_name;
echo $Uname;
}
"
the results were:
24111199 -
15051984 -
91463227 -
as you can see no username showed up.
I did a little more research and tried this url
http://twitter.com/users/24111199
http://twitter.com/users/15051984
http://twitter.com/users/91463227
twitter gave me an error saying users don’t exist!!