1

我想用下一种方式上传视频:

  1. 我只是将文件上传到服务器(像往常一样)
  2. 我的服务器端 Yii 应用程序获取该视频并从 YouTube 上的一个特殊帐户将其上传到 Youtube

我有什么:

  • 我的 YouTube (google) 帐户名称和电子邮件。“姓名”或“姓名@gmail.com”
  • 我的密码
  • 开发人员密钥,我在 Google 的“产品仪表板”中找到
  • 应用程序的名称,命名为“myapp”:

产品仪表板:myapp

所以,我在谷歌阅读了一些文档,并决定对我来说最好的方法是使用 ClientLogin 身份验证类型,因为我只有一个帐户可以使用,而且我拥有所有必要的数据。我找到了 ZendFramework 的 GData 示例,并将其导入到我的 Yii 应用程序中。

我特别简化了代码,只是为了从 /upload 目录上传一个视频来测试它是否有效。我希望在我上传的 YT 帐户中找到一个视频。当然没有视频,我在这里 :-) 完整的操作代码如下:

Yii::import('application.vendors.*');
require_once 'Zend/Loader.php';
Zend_Loader::loadClass('Zend_Gdata_YouTube');
Zend_Loader::loadClass('Zend_Gdata_ClientLogin');

$yt_user = 'myYTname';
$yt_pass = 'myYTpass';
$yt_source = 'myapp';
$yt_api_key = 'veryVERYlongKEYhere';

$authenticationURL= 'https://www.google.com/accounts/ClientLogin';
$httpClient = Zend_Gdata_ClientLogin::getHttpClient(
    $username = $yt_user,
    $password = $yt_pass,
    $service = 'youtube',
    $client = null,
    $source = $yt_source,
    $loginToken = null,
    $loginCaptcha = null,
    $authenticationURL
);
$yt = new Zend_Gdata_YouTube($httpClient, $yt_source, null, $yt_api_key);
$myVideoEntry = new Zend_Gdata_YouTube_VideoEntry();
$filesource = $yt->newMediaFileSource(Yii::getpathOfAlias('webroot').'/upload/videos/video.mp4');
$filesource->setContentType('video/mp4');
$filesource->setSlug('video.mp4');
$myVideoEntry->setMediaSource($filesource);
$myVideoEntry->setVideoTitle('My Test Movie');
$myVideoEntry->setVideoDescription('My Test Movie description');
$myVideoEntry->setVideoCategory('Autos');
$myVideoEntry->SetVideoTags('cars, funny');
$myVideoEntry->setVideoDeveloperTags(array('mydevtag', 'anotherdevtag'));

$uploadUrl = "http://uploads.gdata.youtube.com/feeds/api/users/{$yt_user}/uploads";
try {
    $newEntry = $yt->insertEntry($myVideoEntry, $uploadUrl, 'Zend_Gdata_YouTube_VideoEntry');
} catch (Zend_Gdata_App_HttpException $httpException) {
    echo $httpException->getRawResponseBody();
} catch (Zend_Gdata_App_Exception $e) {
    echo $e->getMessage();
}

如您所见,官方示例中有很多默认代码。但它不起作用。没有人回声向我显示信息。但是当我删除 try-catch 时,我得到了一个错误:

Zend_Gdata_App_HttpException
Read timed out after 10 seconds 
4

1 回答 1

0

所以,这个问题自己解决了:)首先:不要尝试从localhost上传!然后在我的情况下,我得到了一个错误,我没有说我的开发密钥!因此,如果您遇到相同的错误,请尝试更改:

    $newEntry = $yt->insertEntry($myVideoEntry, $uploadUrl, 'Zend_Gdata_YouTube_VideoEntry');

通过添加第 4 个参数 - 额外的标题:

$yt->insertEntry($myVideoEntry, $uploadUrl, 'Zend_Gdata_YouTube_VideoEntry', array(
    'X-GData-Key' => 'key=yourBIGbigBIGdeveloperKEYhere'
));

祝你好运,享受 youtube API 的乐趣!

于 2012-07-03T14:04:20.073 回答