0

我在 iOS 应用程序中使用 YouTube API 2.0,我提出了这样的请求:

POST http://uploads.gdata.youtube.com/resumable/feeds/api/users/default/uploads

Authorization = "Bearer <acess_token>";
"Content-Length" = 516;
"Content-Type" = "application/atom+xml; charset=UTF-8";
"GData-Version" = 2;
Slug = "testVideo.mov";
"X-GData-Key" = "key=<api_key>";

与身体:

<?xml version="1.0"?>
<entry xmlns="http://www.w3.org/2005/Atom"
xmlns:media="http://search.yahoo.com/mrss/"
xmlns:yt="http://gdata.youtube.com/schemas/2007">
<media:group>
<media:title type="plain">My title</media:title>
<media:description type="plain">My description</media:description>
<media:category scheme="http://gdata.youtube.com/schemas/2007/categories.cat">Entertainment</media:category>
<media:keywords>mediawork</media:keywords>
</media:group>
</entry>

但是服务器响应出现错误 500,并且没有带有解释的 XML 正文。我应该怎么办?它在一个月前工作。

4

1 回答 1

0

感谢您报告此问题。但根据我们的博客文章,Stack Overflow 以成为问题和答案的目的地而自豪,而不是提交错误报告或功能请求的地方。我们要求开发人员不要在 Stack Overflow 上发布此类内容,而是使用我们现有的模板在现有的公共问题跟踪器中提交错误提交功能请求。(在提交副本之前,请务必检查现有未解决问题的列表。)

此问题已报告https://code.google.com/p/gdata-issues/issues/detail?id=4396 您可以从那里跟踪状态。

于 2013-04-21T16:47:08.107 回答