I have been using Abraham Williams’ PHP oAuth libs for about 3 years with no problems, recently, I started getting an error 34 (Sorry, that page does not exist).
Specifically, this is for the users/lookup call:
$connection = new TwitterOAuth($twitterKeys[‘consumer_key’], $twitterKeys[‘consumer_secret’],$twitterKeys[‘oauth_token’],$twitterKeys[‘oauth_token_secret’]);
$results = $connection->post(‘users/lookup’, array(‘user_id’ => ‘102875024,857327942,463466897’));
This gives me error 34.
$results = $connection->post(‘users/lookup’, array(‘user_name’ => ‘some_name,someother_name’));
Gives me the profiles I requested.
I even tried the oAuth request tool (https://dev.twitter.com/docs/api/1.1/get/users/lookup). I copied the cUrl command it generated and used it. It worked when I used screen_name, but when I used user_id, it produced the dreaded error 34.
Before you give me suggestions, can you please try it on your own? If this is a confirmed bug, what’s the timeline for having it fixed?