如何从 Vimeo API 获取外部播放器 URL?

How to get external player URL from the Vimeo API?

我正在尝试从 Vimeo API 获取外部播放器 URL(URL 像这样:https://player.vimeo.com/external/233547548.sd.mp4?s=d2dd296b3c068378ea3f544042c92ce2f803a62b&profile_id=222)。我有一个企业帐户,我正在尝试为我自己的视频获取这些 URL。如果我执行 GET https://api.vimeo.com/videos/233547548 我无法在 JSON 数据中找到外部播放器 URL。

我做错了什么?

正如@Tommy Penner 在评论中所回答的那样,您需要使用具有 video_files 范围的授权令牌并向视频所有者进行身份验证。

Vimeo API 文档对这个主题的描述比较浅显,但相关信息在这里:https://developer.vimeo.com/api/authentication#understanding-the-auth-process

谢谢汤米