I use "twitteroauth" and this code fragment:
$userlist='111111,66666,7777,22222';
$Results=$oauth->get( 'users/lookup', array('user_id' => $userlist ) );
After i print out the results, i see that the order of "$Results" is not ok.
For example:
$Results[0] gathers the data of '7777',
$Results[1] gathers the data of '111111'.
I tried this for ten times. Every time the order in array changes.
Is it normal behaviour of twitter API ?
Thank you