是否可以通过Youtube API获得频道社交链接

时间:2013-02-17 22:44:06

标签: youtube youtube-api youtube-channels

在Youtube频道页面上有相关网站的链接。是否可以通过Youtube API获取这些内容,或者我必须解析页面。

Related links on Youtube channel

2 个答案:

答案 0 :(得分:8)

很遗憾,API中未提供“相关网站”,即使在“https://developers.google.com/youtube/v3/docs/channels#snippet.description

中也是如此

答案 1 :(得分:1)

我创建了一个非常简单的Java-API,可以从Youtube频道获取相关网站。它将返回所有URL和链接文本。您甚至可以过滤掉特定网站或社交网络的链接。

YoutubeRelatedSites yrs = new YoutubeRelatedSites(new URL("https://www.youtube.com/user/WatchMojo/about?&ab_channel=WatchMojo.com"));
Map map = yrs.getLinks(); //Get all related sites
URL[] twitterLinks = yrs.getTwitter(); //Get all twitter links

在此处下载源代码:https://github.com/Grunzwanzling/YoutubeRelatedSites