I used YouTube video upload API to upload video from my site to YouTube, however I also need to retrieve video description of a video providing its url. I used this line
<?php
$entry= getVideoEntry("kNUBV9trDoA");
echo $entry->getVideoDescription();?>
我用zend 装载器来操作这些线
include("Zend/Loader.php");
但当我这样做并在服务器上运行 PHP 文件时, 我得到这个错误
Fatal error: Call to undefined function getVideoEntry()
我相信装载器文件 装载所有操作所需的文件
php 中也有这些线条 。
Zend_Loader::loadClass( Zend_Gdata_YouTube );
Zend_Loader::loadClass( Zend_Gdata_AuthSub );
Zend_Loader::loadClass( Zend_Gdata_App_Exception );
but when i use those lines under loader include line i get this error
警告: 包括_ once( ZendGdataYouTube.php) [函数. include- cece- include- cecece]: 无法打开流: 没有此文件或目录
它们都在文件夹中, 但php 脚本无法装入它们, 路径都是正确的, 我已经检查过 。
我该如何使用这个 API 获取YouTube视频视频的视频描述? 需要什么样的文件才能要求我如何初始化, 或是否有更简单的方法通过提供 URL 或视频id 来获取视频描述?
观 观 观