我正在尝试使用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!
这有什么理由吗?