Can I get social channels links with the Youtube API

The Youtube channel page has links to related sites. Is it possible to get them through the Youtube API or will I have to analyze the page.

Related links on Youtube channel

+5
source share
2 answers

Unfortunately, “linked sites” are not listed in the API, even in “ https://developers.google.com/youtube/v3/docs/channels#snippet.description "

+8
source

I created a very simple Java API that can receive related sites from the Youtube channel. It will return all URLs and link texts. You can even filter links for a specific website or social network.

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

All Articles