Hello developers,
I’m using the Twitter REST API v1.1 to fetch some info about authenticated users. I would like to display the user’s most recents favorited tweets.
I am using jmathai’s “twitter async” lib. https://github.com/jmathai/twitter-async/
I have read https://dev.twitter.com/docs/api/1.1/get/favorites/list
I am already able to authenticate, get a user’s home_timeline, and so on.
My problem is that when I try to access the recent favorites, it only answers “Sorry, that page does not exist (34)”.
$tweets = $twitterObj->get(’/favorites/list.json’, array(‘screen_name’=>‘dsampaolo’));
(I tried to switch to my user_id, remove $params…)
The doc does’nt state that the endpoint is deprecated.
Am I missing something obvious ?
Thanks for your replies and help.