来自 Vimeo 的随机视频列表

Random video list from Vimeo

我正在为数字电视盒创建一个 Vimeo HTML5 应用程序。当用户打开该应用程序时,he/she 应该能够在不登录 vimeo 帐户的情况下看到来自 Vimeo 的随机视频列表。

我怎样才能做到这一点?

第二件事是我想在没有身份验证的情况下调用vimeo api。

到底有没有?

看看简单的API Channels part here which is able to return a list of public channels based on the ordering you need. You can order channels by newest to get a frequently-refreshed new feed. Then you can retrieve infos about each channel using this API.

不幸的是,如果没有用户身份验证,就无法从频道中检索视频,但您可以改为显示频道列表。

不支持随机视频,但您可以将其设为伪随机。浏览端点文档:https://developer.vimeo.com/api/endpoints。有很多方法可以获取视频。搜索、频道、相册、群组等

您可以通过一次生成未经身份验证的访问令牌并将其用于所有请求来发出未经身份验证的请求:https://developer.vimeo.com/api/authentication#unauthenticated-requests