YouTube V3 API - 按持续时间过滤相关视频信息似乎不起作用



我正在尝试从YouTube V3 API请求的响应中筛选出"长"视频。

我有:

var relatedVideoInformationRequest = gapi.client.youtube.search.list({
    part: 'snippet',
    relatedToVideoId: 'oqrxjeDIWPs',
    maxResults: 10,
    //  If the relatedToVideoId parameter has been supplied, type must be video.
    type: 'video',
    videoDuration: 'medium'
});
relatedVideoInformationRequest.execute(function (relatedVideoInformationResponse) {
    console.log(relatedVideoInformationResponse);
});

第一个结果超过20分钟,并且似乎没有应用videoDuration参数。这发生在我的代码和YouTube API游乐场中。

是我做错了什么,还是这是个bug?

你是对的,我在内部提交了一个bug。请随意在公共问题跟踪器中提交一个错误以进行跟踪。

相关内容

  • 没有找到相关文章