我想获得推文的转发次数。我写这段代码
$info = $twitteroauth->get('https://api.twitter.com/1.1/statuses/retweets/:345469673132945408.json');
$twitteroauth->post('https://api.twitter.com/1.1/statuses/update.json?status= This is the status update');
print_r($info);
它发布This is the status update
消息。没有问题。所以$twitteroauth
对象没有问题。但它会打印错误而不是打印$info
[errors] => Array
(
[0] => stdClass Object
(
[message] => Sorry, that page does not exist
[code] => 34
)
)
第 345469673132945408 条推文是公开的且未删除的推文。我正在使用亚伯拉罕的图书馆。那么我怎样才能获得推文的转发次数?