通过YouTube API上传视频



我正在使用YouTube API以编程方式上传视频到YouTube。我的一些视频需要被标记为年龄限制,所以我想指定AgeGating视频属性。当指定video.setAgeGating(gating)时,还必须提供适当的部件名称,否则我会得到以下错误

{
  "code" : 400,
  "errors" : [ {
    "domain" : "youtube.part",
    "location" : "part",
    "locationType" : "parameter",
    "message" : "ageGating",
    "reason" : "unexpectedPart"
  } ],
  "message" : "ageGating"
}

文档说明了以下可用部分:

snippet, contentDetails, fileDetails, liveStreamingDetails, player,处理细节、记录细节、统计、状态、建议、和topicDetails。

在我的情况下,它们都不起作用,仍然返回相同的 expectedpart 错误消息,所以我尝试了一个自定义的ageGating部件名称,尽管这次的响应是:

{
  "code" : 403,
  "errors" : [ {
    "domain" : "youtube.common",
    "message" : "Forbidden",
    "reason" : "forbidden"
  } ],
  "message" : "Forbidden"
}

此错误类型未在YouTube API错误文档页面中列出。

下面是我的代码示例:
Video videoMetadata = new Video();
// set status
VideoStatus status = new VideoStatus();
status.setPrivacyStatus("public");
videoMetadata.setStatus(status);
// set metadata snippet
VideoSnippet snippet = new VideoSnippet();
snippet.setTitle("Test Upload");
snippet.setDescription("YouTube Data API V3");
List<String> tags = new ArrayList<String>();
tags.add("YouTube Data API V3");
tags.add("Test Upload");
snippet.setTags(tags);
videoMetadata.setSnippet(snippet);
// set video content
InputStreamContent videoContent = new InputStreamContent(
          VIDEO_FILE_FORMAT, new BufferedInputStream(new FileInputStream(videoFile)));
      videoContent.setLength(videoFile.length());
// set age gating
VideoAgeGating gating = new VideoAgeGating();
gating.setRestricted(true);
videoMetadata.setAgeGating(gating);

YouTube.Videos.Insert videoInsert = youtube.videos()
  .insert("ageGating,snippet,statistics,status", videoMetadata, videoContent);
Video returnedVideo = videoInsert.execute();

是否禁止为新视频指定年龄限制,或者是否有其他视频部件名称?

阅读文档,似乎youtube年龄限制属性是另一个内容评级

如果我理解文档,你不能通过YouTube API设置这个属性。我读到你必须在请求正文中发布视频资源,你只能设置视频资源的一些属性

您可以为这些属性设置值:

snippet.title
snippet.description
snippet.tags[]
snippet.categoryId
status.privacyStatus
status.embeddable
status.license
status.publicStatsViewable
status.publishAt
recordingDetails.locationDescription
recordingDetails.location.latitude
recordingDetails.location.longitude
recordingDetails.recordingDate

你可以把这个属性读成:contentdetails . contentating . ytrating = "ytAgeRestricted",但看起来你不能在Youtube API的POST请求正文的视频资源中发布这个属性

    {
      ... 
      "contentDetails": {
        ...
        "contentRating": {
                "ytRating": "ytAgeRestricted"
            }
            ...
        }
    }

contentDetails应该可以做到这一点,下面是contentDetails下的资源。https://developers.google.com/youtube/v3/docs/videos contentDetails.contentRating.ytRating

相关内容

  • 没有找到相关文章

最新更新