使用 Youtube API 检索基本数据

发布于 2024-11-17 09:08:46 字数 211 浏览 2 评论 0原文

我真的不知道如何使用 Youtube API.. 直到今天我使用 cUrl 从 Youtube 检索数据。

我发现了 Youtube 的 API,我真的考虑开始使用该 API。 我需要的数据非常基本,只是视频的名称和描述。如果我使用 api,它会比 cUrl 快吗?

你能给我一个代码来通过 url 或 id 检索 Youtube 视频的名称和描述吗?

谢谢。

I don't know really how to use Youtube API.. until today I retrieve data from Youtube with cUrl.

I fount out the API of Youtube and I really consider to start using with the API.
The data I need is really basic, just the name and the description of the video.. If I will use the api, will it be fast then cUrl?

Can you bring me a code to retrieve just the name and the description of the Youtube video by url or id?

Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

信愁 2024-11-24 09:08:46

开发人员指南:数据 API 协议 – 检索单个视频的数据
要检索有关单个视频的信息,您可以向以下 URL 发送 GET 请求。 (您需要将文本 videoid 替换为视频的实际视频 ID。)
https://gdata.youtube.com/feeds/api/videos/videoid ?v=2
或“http://gdata.youtube.com/feeds/api/videos/[id]?fields=title”
如需了解更多信息,请访问 http://code.google.com/apis/youtube/2.0/ Developers_guide_protocol_video_entries.html

希望它有帮助:)

Developer's Guide: Data API Protocol – Retrieving Data for a Single Video
To retrieve information about a single video, you can send a GET request to the following URL. (You need to replace the text videoid with the video's actual video ID.)
https://gdata.youtube.com/feeds/api/videos/videoid?v=2
or "http://gdata.youtube.com/feeds/api/videos/[id]?fields=title"
More info at http://code.google.com/apis/youtube/2.0/developers_guide_protocol_video_entries.html

hopefully it helps :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文