获取状态/ home_timeline Twitter API

时间:2016-11-14 17:14:23

标签: php twitter

我正在尝试使用API 1.1检索Twitter时间轴状态:

$url = 'https://api.twitter.com/1.1/statuses/home_timeline.json';
$getfield = '?count=10';
$requestMethod = 'GET';

$twitter = new TwitterAPIExchange($settings);
$tweets = $twitter->setGetfield($getfield)
    ->buildOauth($url, $requestMethod)
    ->performRequest();

我希望当我收到回复并使用json_decode($tweets, true);时,结果的大小为10.但它是9!

这有什么理由吗?

0 个答案:

没有答案