4

我想Featuring channel使用 YouTube 的 API V3 从 YouTube 频道的模块中获取所有频道

我贴一张图,你可以看看是什么模块 Featuring channel

在此处输入图像描述

这是包含所有 YouTube 频道的模块。

我想用 api 得到这个,但我在 API 中找不到信息。 可能吗 ?

https://support.google.com/youtube/answer/3027950?hl=en

4

2 回答 2

5

在 youtube api V3 上没有获取精选频道的选项。我认为我们还需要等待 api v3 的更新。

我终于找到了 YouTube API V3 的解决方案!

如果您查看Channel的文档,您可以看到参数:brandingSettings

特色频道位于brandingSettings 结果中。您只需要 YouTube 频道的 ID,而不是用户名。我制作了一个工具来查找带有名称的 YouTube频道的 ID 。

http://martialdidit.github.io/YoutubeID/

例如,频道是:YouTubeHelp -> id:UCMDQxm7cUx3yXkfeHa5zJIQ

因此,使用此 ID 和部分:brandingSettings,您可以找到特色频道。

api的资源管理器的一个例子

结果 :

  "brandingSettings": {
    "channel": {
     "title": "YouTube Help",
     "description": "Subscribe for tutorials, troubleshooting, and tips from the YouTube Help team! Check out the links below for more help.",
     "keywords": "youtube help tutorials \"youtube help\" Hilfe Ayuda Aide ヘルプ 도움 Ajuda",
     "moderateComments": true,
     "showRelatedChannels": true,
     "showBrowseView": true,
     "featuredChannelsTitle": "Featured Channels",
     "featuredChannelsUrls": [
      "UCBR8-60-B28hp2BmDPdntcQ",
      "UCUZHFZ9jIKrLroW8LcyJEQQ",
      "UCeNZlh03MyUkjRlLFpVQxsg",
      "UCkRfArvrzheW2E7b6SVT7vQ",
      "UCEN58iXQg82TXgsDCjWqIkg",
      "UCgNxLruwXS9fJNPztu5AVQA"
     ],
     "unsubscribedTrailer": "MjHDKJuPjLs",
     "profileColor": "#000000"
    },

如果您检查表格:featuredChannelsUrls

每个 id 对应一个特色频道。使用 API V3 查找通道关联的名称。

于 2014-04-04T11:11:49.217 回答
1

No. Upon checking the documentation, I don't think youtube api V3 lists options to grab list of featured videos.

However, version V2 had an option to get the recently featured list. It has been deprecated.

于 2014-04-02T10:56:42.080 回答