I am using Abraham Williams’ oAuth library for our application. I am trying to to lookup users, using that library:
$this->oAuthConnection->get(‘users/lookup’, array(‘user_id’ => $users_ids, ‘include_entities’ => 1));
I am now getting the following response:
Array
(
[errors] => Array
(
[0] => Array
(
[message] => Sorry, that page does not exist
[code] => 34
)
)
)
I verified that I have the correct version of the library:
public $host = “https://api.twitter.com/1/”;
function accessTokenURL() { return ‘https://api.twitter.com/oauth/access_token’; }
function authenticateURL() { return ‘https://api.twitter.com/oauth/authenticate’; }
function authorizeURL() { return ‘https://api.twitter.com/oauth/authorize’; }
function requestTokenURL() { return ‘https://api.twitter.com/oauth/request_token’; }
Is this library no longer working with the new API?