Hi
There seems to be an issue with the users lookup feature and using the profile id to search. It only seems to fail for a limited number of accounts that have larger profile ids.
For example using a clients username works fine
$twitterObj->post(’/users/lookup.json’, array(‘screen_name’ => ‘realtalkbelike’));
This will return the details as expected however if I use the number string to access the profile
$twitterObj->post(’/users/lookup.json’, array(‘user_id’ => 731737580580966400));
It will always return the error code
Caught exception: {“errors”:[{“code”:17,“message”:“No user matches for specified terms.”}]}
Any ideas people ? Or is this a bug within the API itself.
I am using the following library
many thanks
Gavin