在Youtube频道页面上有相关网站的链接。是否可以通过Youtube API获取这些内容,或者我必须解析页面。
答案 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