我想从www.youtube.com/feeds/videos.xml?playlist_id获取最近50个视频,目前我只能检索最近15个视频。我尝试过max-result参数,但失败了。
答案 0 :(得分:0)
我找到了另一种获取youtube播放列表视频的方法,而不是以上方法,这里是
<?php
$playlistId = 'Playlist Id here';
$maxResults = 50;
$apiKey = 'youtube api key here';
$string = json_decode(file_get_contents('https://www.googleapis.com/youtube/v3/playlistItems?part=snippet&playlistId='.$playlistId.'&maxResults='.$maxResults.'&key='.$apiKey.''));
//echo '<pre>'; print_r($string);
foreach($string->items as $item) {
$video_id = $item->snippet->resourceId->videoId;
}
?>