0

根据文档,我可以通过这种方式检索我订阅的频道:

GET {base_URL}/subscriptions?part=snippet
                            &mine=true

现在我需要获取特定频道或一堆的提要,所以我需要这样的东西

GET {base_URL}/search?part=snippet
                     &channelIds = {CHANEL_IDS}                  
                     &type=video
                     &videoCaption=closedCaption
                     &key={YOUR_API_KEY}

给我提供的频道 ID 的提要。我更喜欢使用 v3 api。

4

1 回答 1

0

你可以通过channels->list来做。

GET https://www.googleapis.com/youtube/v3/channels?part=snippet%2C+contentDetails
              &id={CHANEL_IDS}&key={YOUR_API_KEY}
于 2013-10-25T19:00:01.240 回答