I am using the Twitter Search API with the PHP library TwitterOAuth 0.5.1 to process tweets containing a given hashtag (#citylightsorchestra for instance).
My request (see the source code below) returns only 1 result when the Web client search engine returns something like 10 tweets. Is there any way to modify my request in order to increase the result count?
require "twitter.config.php";
require "twitteroauth-0.5.1/autoload.php";
use Abraham\TwitterOAuth\TwitterOAuth;
$connection = new TwitterOAuth($consumer_key, $consumer_secret, $access_token, $access_token_secret);
$content = $connection->get("search/tweets",
array(
"q" => urlencode("#citylightsorchestra"),
"lang" => "fr",
"count" => "100",
"include_entities" => "true",
"result_type" => "recent"));
var_dump($content);
Thank you for your precious help.