PHP Youtube API - 获取洞察数据
我正在使用 Zend PHP Gdata API for Youtube 检索数据并在 Youtube 上上传视频,需要获取每个视频的 Insight 信息,但对如何获取数据感到困惑。
我在论坛上读过,如果您已通过身份验证并且您拥有该视频(我是/并且该视频是),那么它会在 getVideoEntry 中出现。我得到了统计对象,但我想要完整的洞察数据。
我已看过以下文档,但无法了解如何使用 API 获取它:
http://code.google.com/apis/youtube/2.0/developers_guide_protocol_insight.html
谢谢, 詹姆斯
I am using the Zend PHP Gdata API for Youtube to retrieve data and upload video on Youtube and need to get Insight information for each video but confused how.
I have read on forums and random posts it comes through in the getVideoEntry if you are authenticated and you own the video (which I am / and the video is). I get the statistics object but I wanted the full insight data.
I have seen the following documentation but can't see how to get it using the API:
http://code.google.com/apis/youtube/2.0/developers_guide_protocol_insight.html
Thanks,
James
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我终于完成了这项工作,并在使用 URL“http://gdata.youtube.com/feeds/api/users/default/uploads”调用“getVideoFeed”时在提要中下载了见解 zip 文件:“http://gdata.youtube.com/feeds/api/users/default/uploads”,请确保您设置了MajorVersion (2)关于Youtube连接对象。
请注意:直接与 YouTube 对话后,Insight ZIP 默认返回 7 天,但更改 user_starttime 后您可以获得最多 28 天。
希望这对将来的人有帮助!
詹姆斯
I finally got this working and got the insight zip file download in the feed when calling "getVideoFeed" with the URL: "http://gdata.youtube.com/feeds/api/users/default/uploads" make sure though you setMajorVersion(2) on the Youtube connection object.
Please note: After speaking to YouTube directly the Insight ZIP returns 7 days by default, although changing the user_starttime you can get a MAXIMUM of 28 days.
Hope this helps someone in the future!
James