On a Youtube channel page there are links of to related sites. Is it possible to get these through the Youtube API or will I have to parse the page.
Asked
Active
Viewed 1,675 times
2 Answers
9
Unfortunately 'related sites' are not provided in API, even in "https://developers.google.com/youtube/v3/docs/channels#snippet.description"

Ibrahim Ulukaya
- 12,767
- 1
- 33
- 36
-
5Ibrahim, are they still unavailable? – celiker Oct 09 '15 at 08:59
-
1@Ibrahim, is it still not available? – Mahmoud Hanafy Aug 13 '18 at 13:03
1
I created a very simple Java-API which can get the related sites from a Youtube channel. It will return all the URLs and the link texts. You can even filter out the 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
Download the source code here: https://github.com/Grunzwanzling/YoutubeRelatedSites

Grunzwanzling
- 443
- 4
- 14