YouTube API 见解 CSV

发布于 2024-11-17 22:48:17 字数 761 浏览 3 评论 0原文

我想要检索并下载我的视频的 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 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文