如何在不使用搜索请求的情况下按频道 ID 获取频道的视频



在我的 NodeJS 应用程序中,我使用以下代码获取特定频道的视频:

 var myOauth = 'my oauth object';
 var channelId = 'my channel id';
 youtube.search.list({ auth: myOauth, part: 'snippet', 
                       channelId: channelId, type:'video',
                       order:'date', maxResults:50 
                     }, 
                     function(err, response) {
                       //do something here
                     }
 );

此解决方案有效,但每个请求的配额成本为 100。 https://developers.google.com/youtube/v3/docs/search/list

我想通过其他方式获取视频,例如配额成本为 1 的"播放列表项目"。 https://developers.google.com/youtube/v3/docs/playlistItems/list

解决方案从@julien-dumortier的问题帖子中移出。

我找到了一种新方法,只需 3 个配额成本即可按频道 ID 获取特定频道的视频。

获取通过 Oauth 进行身份验证的用户的订阅列表:

youtube.subscriptions.list({
    auth: oauth, part: 'snippet,contentDetails', 
    mine:true, maxResults:50, 
    pageToken:pageToken }, 
    function(err, response) {
        if(!err) {
            var firstChannelId = response.item[0].snippet.resourceId.channelId;
            console.log(firstChannelId);
        }
    }
);

从频道 ID 获取频道播放列表 ID:

youtube.channels.list({    auth: res.oauth, part: 'contentDetails', 
    id:firstChannelId, maxResults:50 }, 
    function(err, response) {
        var channelPlaylistId = response.item[0].contentDetails.relatedPlaylists.uploads;
        console.log(channelPlaylistId);
    }
);

浏览播放列表中的项目:

youtube.playlistItems.list({    auth: res.oauth, part: 'snippet', 
    playlistId:channelPlaylistId,
    maxResults:50, pageToken:pageToken }, 
    function(err, response) {
        console.log(JSON.stringify(response.items));
    }
);

相关内容

  • 没有找到相关文章

最新更新