4

我似乎无法让我的 ASP.net 应用程序成功发布到我的 YouTube 帐户,但无论我做什么,我都会收到 400 Bad Request 错误。我使用 YouTube 文档来创建我的代码并获得一个开发密钥。另外,我没有收到和身份验证错误,所以我相信我的参数是正确的。尽管进行了大量搜索,但我无法找到我的任务的明确答案,所以我只能假设我错误地使用了 API 或遗漏了一些关键的东西。

我的使用指令如下

using System; using Google.GData.Client; using Google.GData.YouTube; using Google.GData.Extensions; using Google.GData.Extensions.MediaRss; using Google.YouTube;

我的 API 调用代码在这里

YouTubeRequestSettings settings = new YouTubeRequestSettings("k2ps",
  YOU_TUBE_DEVELOPER_KEY, YOU_TUBE_USER_NAME, YOU_TUBE_PASSWORD);
  YouTubeRequest request = new YouTubeRequest(settings);

  Video video = new Video();
  video.Title = title;
  video.Tags.Add(new MediaCategory(sport, YouTubeNameTable.CategorySchema));
  video.Keywords = keyword;
  video.Description = "K2ps";  //todo replace this with the preview text
  video.YouTubeEntry.Private = false;

  video.YouTubeEntry.MediaSource = new MediaFileSource(videoPath, "video/x-flv");
  Video createdVideo = request.Upload(video);

我收到一个 HTTP 400 错误请求异常被抛出。我使用提琴手来获得下面的原始响应。

请求执行失败: http: //uploads.gdata.youtube.com/feeds/api/users/default/uploads at Google.GData.Client

   HTTP/1.1 400 Bad Request
    Server: Upload Server Built on Jun 6 2011 12:48:11 (1307389691)
    X-GData-User-Country: US
    Content-Type: text/xml; charset=UTF-8
    Date: Thu, 09 Jun 2011 02:07:30 GMT
    Pragma: no-cache
    Expires: Fri, 01 Jan 1990 00:00:00 GMT
    Cache-Control: no-cache, no-store, must-revalidate
    Content-Length: 257



        <?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>
4

2 回答 2

5

根据回复,您media:category可能不正确。尝试:

video.Tags.Add(new MediaCategory("Sports", YouTubeNameTable.CategorySchema));
于 2011-06-09T02:41:48.047 回答
3

您需要从http://gdata.youtube.com/schemas/2007/categories.cat它们在该错误消息中显示的“”中指定 1 个默认类别。

它必须与该文档中指定的标签完全匹配。

于 2011-06-09T02:41:44.897 回答