我正在尝试制作一些播放列表,其中包含我通过 YouTube API 找到的视频。此 python 代码可以很好地创建播放列表:
ptitlestart = 'Cute Videos'
ptitlecount = 1
while ptitlecount < 6:
new_private_playlistentry = yt_service.AddPlaylist(ptitlestart + str(ptitlecount), 'cute pets video playlist for content coding', True)
ptitlecount = ptitlecount + 1
但我不知道如何找到我刚刚创建的播放列表的 uri。我需要每个播放列表的 uri 才能向其中添加视频。智慧赞赏!