标签: api laravel-5 twitter twitter-oauth
我正在使用Twitter API,但我只得到前100个结果
$connection = new TwitterOAuth( '--' , '--' ,'--', '--'); $matches = $connection->get('search/tweets' , ['q' => 'john' , 'count' => 100 , 'result_type' => 'recent']);
我的问题是如何循环搜索1000个搜索结果?