我遇到了创建分页电影列表的问题。
以下是我的代码:
$API_key = 'my_api_key';
$channelID = 'channel_id';
$maxResults = 15;
$videoList = json_decode(file_get_contents('https://www.googleapis.com/youtube/v3/search?order=date&part=snippet&channelId='.$channelID.'&maxResults='.$maxResults.'&key='.$API_key.''));
foreach($videoList->items as $item){
if(isset($item->id->videoId)){
echo '<div class="youtube-video col-xl-4">
<iframe width="100%" height="100%" src="https://www.youtube.com/embed/'.$item->id->videoId.'" frameborder="0" allowfullscreen></iframe>
<h3>'. $item->snippet->title .'</h3>
</div>';
}
}
我错过了什么,接下来该怎么办?我正在阅读有关pageToken但我不知道如何获得它的价值以使其正常工作。