react-youtube
react-youtube copied to clipboard
Question: Embedding YT channel, different channel name types?
This is not an issue with this library, which has worked great, but I am running into an odd issue with Youtube channel names that I'm hoping someone here with more expertise than myself might be able to help with.
It appears as though some channel names do not work for embedding a channel, but the url format appears the same as with channel names that are embeddable. For example, embedding the college humor channel works, url https://www.youtube.com/c/collegehumor, embedding the Justin Bieber channel does not, url https://www.youtube.com/c/justinbieber.
Both of these use the same code: ```js player.loadPlaylist({ list: "justinbieber", // <-- doesn't work, https://www.youtube.com/c/justinbieber listType: "user_uploads"
// list: "collegehumor", //<-- works, https://www.youtube.com/c/collegehumor
// listType: "user_uploads"
});```
Any help or input greatly appreciated!