我尝试使用图表参数来获取热门视频,但它表示该图表不是有效参数。我正在使用PHP。我有区域和类别,一切都很好。这是一个错误吗?我该怎么做?
这是我的代码
$searchResponse = $youtube->search->listSearch('id,snippet', array(
//'type' => 'video',
'part' => 'snippet',
'location' => 'GB',
'videoCategoryId' => '23',
'chart' => 'mostPopular',
'order' => 'date',
'maxResults' => '50'
));
说:发生客户端错误:(列表)未知参数:'chart'
答案 0 :(得分:1)
您正在寻找Videos list endpoint而不是Search list endpoint,您可以获得regionCode
&的最热门视频。 videoCategoryId
with:
$videosResponse = $youtube->videos->listVideos('snippet', array(
'chart' => 'mostPopular',
'maxResults' => 50,
'regionCode' => 'GB',
'videoCategoryId' => '23'
));