搜索多个频道ID youtube / google API

问题描述 投票:0回答:1
const channelIds = ['UCBi2mrWuNuyYy4gbM6fU18Q', 'UCshCsg1YVKli8yBai-wa78w', 'UCoMdktPbSTixAyNGwb-UYkQ']
        const online = await fetch(
            https://www.googleapis.com/youtube/v3/search?part=snippet&channelId=${channelIds}&type=video&eventType=live&key=key
        )

我正在尝试搜索多个频道,但这似乎不起作用。有什么想法吗?

google-api youtube-api youtube-data-api youtube-javascript-api
1个回答
0
投票

搜索端点的channelId参数仅接受一个channelId,因此您必须为每个通道分别发出请求。

© www.soinside.com 2019 - 2024. All rights reserved.