如何获得朋友/以下的ID?

时间:2012-04-30 15:40:31

标签: php twitter twitter-oauth

我写了这段代码:

$twitterObj->setToken($_SESSION['ot'], $_SESSION['ots']);
$twitterFriends=$twitterObj->get_friendsIds(array('screen_name' => $_SESSION['username']));
$twitterFriends->response;
echo $twitterFriends->responseText;
foreach($twitterFriends as $friend) { echo $friend->id; }

但我明白了:

{"errors":[{"code":37,"message":"Not authorized to use this endpoint"}]}

为什么? 我怎样才能得到朋友/以下的ids?

1 个答案:

答案 0 :(得分:1)

根据this post,您可能正在使用旧的Twitter API网址。您是否尝试更新使用的推特库?