How To Extract Image Link Using Jsoup?
I'm trying to scrape 2 images from a YouTube channel, the profile picture, and the banner without using the official YouTube API. This is where I'm trying to get the images from: v
Solution 1:
You can use the code from this class YoutubeChannelProfileImage.java
Example code:
Stringurl="www.youtube.com/...";
YoutubeChannelProfileImage.getYoutubeChannelProfileImage(url);
If you found it useful, please leave a star :)
Post a Comment for "How To Extract Image Link Using Jsoup?"