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

问题描述 投票:0回答:3

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

Related links on Youtube channel

youtube youtube-api youtube-channels
3个回答
9
投票

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


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


0
投票

2023 年 5 月 7 日更新:我发现这可以检索这些数据https://rapidapi.com/dataocean/api/the-better-youtube-channel-details

© www.soinside.com 2019 - 2024. All rights reserved.