显然是“游戏”不是有效的 YouTube 类别
我复制并粘贴了用于基于浏览器上传的示例 YouTube api 代码到我的网站,但当我将类别更改为“游戏”时,它出现了错误的请求错误。
这是示例代码:
$myVideoEntry = new Zend_Gdata_YouTube_VideoEntry();
$myVideoEntry->setVideoTitle('My Test Movie');
$myVideoEntry->setVideoDescription('My Test Movie');
// The category must be a valid YouTube category!
$myVideoEntry->setVideoCategory('Autos');
// Set keywords. Please note that this must be a comma-separated string
// and that individual keywords cannot contain whitespace
$myVideoEntry->SetVideoTags('cars, funny');
$tokenHandlerUrl = 'http://gdata.youtube.com/action/GetUploadToken';
$tokenArray = $yt->getFormUploadToken($myVideoEntry, $tokenHandlerUrl);
$tokenValue = $tokenArray['token'];
$postUrl = $tokenArray['url'];
但是,当我更改
$myVideoEntry->setVideoCategory('Autos');
为时,
$myVideoEntry->setVideoCategory('Gaming');
我得到..
Fatal error: Uncaught exception 'Zend_Gdata_App_HttpException' with message 'Expected response code 200, got 400 <?xml version='1.0' encoding='UTF-8'?><errors><error><domain>yt:validation</domain><code>invalid_value</code><location type='xpath'>media:group/media:category[@scheme='http://gdata.youtube.com/schemas/2007/categories.cat']/text()</location></error></errors>
我已将其确定为唯一的错误。我尝试从实际 YouTube 上传表单的下拉菜单中复制并粘贴“游戏”一词,但无济于事(我不是绝望吗)。
有谁知道为什么会发生这种情况?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我查看了您收到的错误,发现有一个网址 (http://gdata .youtube.com/schemas/2007/categories.cat)在其中。我下载了该文件并发现了以下行:
所以我会尝试使用“游戏”一词而不是“游戏”。
I took a look into the error you got, and there was an url (http://gdata.youtube.com/schemas/2007/categories.cat) in it. I downloaded the file and found the following line:
So I would try the term Games instead of Gaming.