我想获取属于 youtube 播放列表的所有视频。我正在尝试 YT Gem http://fullscreen.github.io/yt/但我可以找到一种从播放列表中获取所有视频的方法。
例如,我创建了一个新对象 playlisitem :
item = Yt::PlaylistItem.new id: 'PLC02CFDE5690E4010'
puts item.title
puts item.description
puts item.published_at
这给了我以下错误
Yt::Errors::NoItems: A request to YouTube API returned no items but some were expected:
也许我需要创建视频“收藏”,但我不知道如何。
http://www.rubydoc.info/gems/yt/Yt/Collections/Videos
任何帮助将不胜感激。