我正试图从youtube用户上传页面中删除所有链接,但我只获得前30个视频,我希望能够获得所有56个视频,我希望能够继续使用jsoup如果可能的话
Document BeInspired = Jsoup.connect("https://www.youtube.com/channel/UCaKZDEMDdQc8t6GzFj1_TDw/videos").get();
Elements links = BeInspired.select("a[href]");
for (Element link : links) {
if (link.attr("href").contains("/watch?v=")) {
if (videos.contains(link.attr("href"))) {
} else {
videos.add(link.attr("href"));
}
}
System.out.println(link.attr("href"));
}
这是我目前使用的代码。