根据文档,我可以通过以下方式检索我订阅的频道:
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}为我提供所提供的频道ids的提要。我更喜欢使用v3接口。
发布于 2013-10-26 03:00:01
你可以通过channels->list来实现。
GET https://www.googleapis.com/youtube/v3/channels?part=snippet%2C+contentDetails
&id={CHANEL_IDS}&key={YOUR_API_KEY}https://stackoverflow.com/questions/19588490
复制相似问题