1

我使用 YouTube 视频上传 API 将视频从我的网站上传到 YouTube,但是我还需要检索提供其 url 的视频的视频描述。我用了这条线

<?php $entry= getVideoEntry("kNUBV9trDoA"); echo $entry->getVideoDescription();?>

我使用 require zend loader 来操作这些行

include("Zend/Loader.php");

但是当我这样做并在服务器上运行 PHP 文件时,我得到了这个错误

Fatal error: Call to undefined function getVideoEntry()

我相信加载器文件会加载操作所需的每个文件

但在 operation.php 中也有这些行

Zend_Loader::loadClass('Zend_Gdata_YouTube');
Zend_Loader::loadClass('Zend_Gdata_AuthSub');
Zend_Loader::loadClass('Zend_Gdata_App_Exception');

但是当我在加载程序下使用这些行时包含行我得到这个错误

警告:include_once(Zend\Gdata\YouTube.php) [function.include-once]:打开流失败:没有这样的文件或目录

它们都在那个文件夹中,但是 php 脚本无法加载它们路径都是正确的,我已经检查过了。

我应该如何使用此 API 检索 YouTube 视频的视频描述 我需要什么文件 我如何初始化或有更简单的方法通过提供 YouTube 的 URL 或视频 ID 来检索视频描述

问候

4

1 回答 1

2

您没有正确输入视频。它应该是:

// Assuming $yt is an authorised Zend_Gdata_YouTube object.
$entry       = $yt->getVideoEntry($videoid);
// Sometimes you may need to get the full entry:
$fullentry   = $yt->getFullVideoEntry($videoid);
// Now you can get the description
$description = $entry->getVideoDescription();

阅读文档的检索

于 2012-05-22T10:01:52.273 回答