如何使用开发密钥和/或开发标签检索 YouTube 视频?
我正在使用 Youtube 数据 API,并尝试检索使用特定开发人员 API 密钥或更佳地使用分配给上传视频的开发人员标签上传的视频的 json 提要。
我阅读了 API 文档,它说要使用这个 URI: http://gdata.youtube.com/feeds /api/videos?key=dev_key_here&v=2&alt=jsonc
该网址获取了 100k 个不属于我的视频。我应该只会收到一个使用我的开发密钥上传的视频。有什么想法吗?
我将使用 ajax 来检索该数据集。
I'm working with the Youtube Data API and I'm trying to retrieve a json feed of videos uploaded with a specific Developer API Key or more preferably with a Developer Tag that is assigned to the videos on upload.
I read the API docs and it said to use this URI:
http://gdata.youtube.com/feeds/api/videos?key=dev_key_here&v=2&alt=jsonc
That URL gets 100k videos that aren't mine. I should only be getting one video that was uploaded with that my dev key. Any ideas?
I'm going to using ajax to retrieve this dataset.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您阅读 API 文档,它会说该密钥仅用于身份验证/识别。如果您想查找用户(也是您自己的)的视频,那么您可以使用
author
参数来指定。有关此内容的 API 文档位于此处
If you read the API documentation it says that the key is solely used for authentication/identification. If you want to find videos by a user (also your own) then you can use the
author
parameter for specifying that.The API documentation for this is here