YouTube API 见解 CSV
我想要检索并下载我的视频的 YouTube Insight CSV。 按照此问题中的说明进行操作:PHP Youtube API - 获取洞察数据, 我编写了以下代码:
$httpClient = Zend_Gdata_AuthSub::getHttpClient($sessionToken);
$yt=new Zend_Gdata_YouTube($httpClient,$clientName,$applicationName,$developerKey);
$yt->setMajorProtocolVersion(2);
$url='http://gdata.youtube.com/feeds/api/users/my_user_name/uploads';
$feed=$yt->getVideoFeed($url);
但是当我迭代提要中获得的链接时(使用 ->getLink('')),我看不到 CSV 的链接(即带有 'rel= 的链接) http://gdata.youtube.com/schemas/2007#insight.views'
我已通过身份验证,并且我是视频的所有者。 我做错了什么?
I want to retrieve and then download the YouTube Insight CSVs for my videos.
Following the instructions in this question: PHP Youtube API - Getting Insight Data,
I wrote the following code:
$httpClient = Zend_Gdata_AuthSub::getHttpClient($sessionToken);
$yt=new Zend_Gdata_YouTube($httpClient,$clientName,$applicationName,$developerKey);
$yt->setMajorProtocolVersion(2);
$url='http://gdata.youtube.com/feeds/api/users/my_user_name/uploads';
$feed=$yt->getVideoFeed($url);
But when I iterate through the links i get in the feed (using ->getLink('')), I see no link for the CSV (That is, a link with 'rel=http://gdata.youtube.com/schemas/2007#insight.views'
I'm authenticated and I'm the owner of the videos.
What am I doing wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论