我已经将 100 个视频上传到我的频道,我需要获取所有视频 ID,但是在我搜索的任何地方,都有仅在播放列表中列出视频的代码。但我所有的视频都在根目录下。
$channelsResponse = $youTubeService->channels->listChannels('id,contentDetails', array(
'mine' => 'true'));
$searchResponse = $youTubeService->playlistItems->listPlaylistItems('snippet', array(
'maxResults' => 50,
'fields' => 'items(snippet(publishedAt,channelId,title,description,thumbnails(default),resourceId)),pageInfo,nextPageToken'));
echo json_encode($searchResponse['items']['contentDetails']['videoId']);
上面的代码从播放列表中获取视频。如何从根目录获取视频。