0

我正在尝试使用 YouTube API 从 YouTube 获取视频列表。我正在使用 API 密钥。当我使用下面的 URL 时,一切正常,我得到了想要的结果: GET https://www.googleapis.com/youtube/v3/videos?part=id%2Csnippet%2CcontentDetails&id=I6zuKbBlmRo&key= {YOUR_API_KEY}

但是,当我将 fileDetails 添加到 part 参数时,我得到一个 403 禁止错误的响应:GET https://www.googleapis.com/youtube/v3/videos?part=id%2Csnippet%2CcontentDetails%2CfileDetails&id=I6zuKbBlmRo&key= { YOUR_API_KEY}

403 禁止

任何帮助将不胜感激。

谢谢

4

1 回答 1

3

来自 YouTube APIv3 文档:

    The **fileDetails** object encapsulates information about the video file that was   
    uploaded to YouTube, including the file's resolution, duration, audio and video 
    codecs, stream bitrates, and more. **This data can only be retrieved by the video owner.**

只有所有者才能获得这些属性。

于 2013-08-10T18:26:03.647 回答