https://github.com/adrifkat/instagram-api kullanarak yorumları çekmek istedim fakat sadece 20 adet yorum çekebildim, şöyle 10000 yorum çekmek için ne fikir verirsiniz? Şimdiden teşekkürler
<?php

error_reporting(E_ALL);
ini_set('display_errors',1);
set_time_limit(0);

require 'vendor/autoload.php';
\InstagramAPI\Instagram::$allowDangerousWebUsageAtMyOwnRisk = true;

$username='xx';
$password='xx';

$ig= new \InstagramAPI\Instagram();
try{
    $ig->login($username, $password);
}catch(\Exception $e){
    echo $e->getMessage();
}
$yorumlar = $ig->media->getComments('2298293468434619653');
$yorumlar_dizisi = json_decode($yorumlar,true);
print_r($yorumlar_dizisi);

?>