我想按“喜剧”类别检索视频,语言为“俄语”(YouTube API v2):
http://gdata.youtube.com/feeds/api/videos?lr=ru&orderby=published&category=Comedy
但每天只能获得 3-10 个视频。它不可能是。一整天3-5个视频?过滤器无法正常工作。
以下代码示例使用 PHP:
$url="http://gdata.youtube.com/feeds/api/videos/?category=comedy&alt=json&lr=ru&orderby=published";
$json_output = json_decode(file_get_contents($url, 0, null, null));
$videos = $json_output->feed->entry;
foreach ( $videos as $v ) {
$title = $v->title->{'$t'};
$pub_date = substr($v->published->{'$t'}, 0, 10);
echo "$title // <strong>$pub_date</strong><br>";
}
问题始于 2013 年 3 月。它以前工作过。