0

我写了这段代码:

$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"}]}

为什么 ?我怎样才能得到朋友/关注的 id ?

4

1 回答 1

1

根据这篇文章,您可能正在使用旧的 twitter API URL。您是否尝试过更新您使用的 twitter 库?

于 2012-04-30T15:59:04.957 回答