我打电话给烂番茄API有什么问题吗?它';It’s只返回3部电影,而不是要求的数量


Is there something wrong with my call to the rotten tomatoes API ? It's returning only 3 movies instead of the number requested?

我的烂番茄API有问题,当我将限制(电影)设置为50部,甚至10部电影时,它只返回一个包含3部电影的数组,而不是10部或50部,或者API调用中的电影限制。。。是什么原因造成的?我使用file_get_contents功能的方式可能有问题吗

$box_office_movies = file_get_contents('http://api.rottentomatoes.com/api/public/v1.0/lists/movies/box_office.json?limit=50&country=us&apikey=6gx9znu2958yeztw9tszbrzq',FILE_USE_INCLUDE_PATH);
$box_office_movies = json_decode($box_office_movies, true); 
var_dump($box_office_movies); // returns only 3 movies .. 
var_dump(count($box_office_movies['movies'])); // returns only 3 movies .. 

我有50部电影。url返回一个包含3个键的数组:{电影:{..},链接:{…},link_template:"…"}

这里似乎工作得很好。。。