How get all videos from a playlist using youtube api?(如何使用 youtube api 从播放列表中获取所有视频?)
问题描述
现在我正在使用这个链接
Now i am using this link
http://gdata.youtube.com/feeds/api/playlists/plalistID
从 YouTube 播放列表中检索视频.但问题是只能获得 25 个视频.但播放列表包含 100 个视频.如何从播放列表中获取所有视频?
to retrieve video from YouTube playlist. but the problem is only getting 25 video. but the playlist contains 100 videos. How get all video from playlist?
推荐答案
Youtube 让您可以为每个请求获取多达 50 个条目.
响应包含一些 元素.如果还有更多记录要获取其中之一,则格式为
<link rel='next' ...
例如
Youtube let's you fetch up to 50 entries per request.
The response contains some <link>
elements. And if there are still more records to fetch one of it is of the form <link rel='next' ...
e.g.
<link
rel='next'
type='application/atom+xml'
href='https://gdata.youtube.com/feeds/api/playlists/plalistID?start-index=26&max-results=25&v=2'
/>
搜索此元素并检索 href 属性指向的文档,直到响应没有 <link rel='next'
元素.
Search for this element and retrieve the document that the href attribute points to until the repsonse has no <link rel='next'
element.
这篇关于如何使用 youtube api 从播放列表中获取所有视频?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何使用 youtube api 从播放列表中获取所有视频?
基础教程推荐
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- HTTP 与 FTP 上传 2021-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 使用 PDO 转义列名 2021-01-01
- PHP 守护进程/worker 环境 2022-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01