使用Zend Gdata Youtube API获取视频上传日期



我正在尝试获得视频的所有详细信息的特定用户的视频列表(标题,desc.,日期,标签…)我可以得到我需要的几乎所有东西,但不知道如何获得上传日期。我尝试使用getVideoRecorded()和getRecorded(),但两者都没有返回任何东西。

我似乎找不到任何相关的谷歌,所有我能找到的是类参考,告诉我,我必须使用getVideoRecorded或getRecorded,但仅此而已。

我做错了什么吗?我怎样才能得到上传日期?

当前代码:

$authenticationURL= 'https://www.google.com/accounts/ClientLogin';
$httpClient = 
  Zend_Gdata_ClientLogin::getHttpClient(
              $username = $yt_username,
              $password = $yt_password,
              $service = 'youtube',
              $client = null,
              $source = '', // a short string identifying your application
              $loginToken = null,
              $loginCaptcha = null,
              $authenticationURL);
$yt = new Zend_Gdata_YouTube($httpClient);
$feed = $yt->getUserUploads($yt_username);
foreach($feed as $item)
                {
                    echo "<div>";
                    echo "<h4>title: " . $item->getVideoTitle() . "</h4>";
                    echo "<p>id: " . $item->getVideoId() . " | ";
                    echo "upload date: " . $item->getVideoRecorded() . "</p>";
                    echo "<p>description: " . $item->getVideoDescription() . "</p>";
                    echo "<p>tags: " . implode(", ", $item->getVideoTags()) . "</p>";
                    echo "</div>";
                    echo "<hr>";
                }

您可以尝试提取<已出版>或<更新了以下xml中的>标签:

http://gdata.youtube.com/feeds/api/videos/{$videoId}

相关内容

  • 没有找到相关文章

最新更新