使用 Youtube API 检索基本数据
我真的不知道如何使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
开发人员指南:数据 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 :)