gpt4 book ai didi

eclipse - 如何使用Eclipse从特定视频中检索YouTube评论

转载 作者:行者123 更新时间:2023-12-03 06:32:48 25 4
gpt4 key购买 nike

我已经按照这里的指南设置了所有内容:https://developers.google.com/gdata/articles/eclipse

从那里开始,我如何开始检索评论?
我有点初学者,所以如果有人可以提供一些开始的代码,那将是很棒的。

最佳答案

首先,您应该下载库并安装链接所在页面中显示的所需库。

要从youtube视频中获取评论,您应该发送以下URL:http://gdata.youtube.com/feeds/api/videos/VIDEO_ID/comments

    YouTubeService service = new YouTubeService(
YOUR_CLIENT_ID);
String url="http://gdata.youtube.com/feeds/api/videos/VIDEO_ID/comments";
VideoEntry videoEntry = service.getEntry(new URL(url),
VideoEntry.class);
String commentUrl = videoEntry.getComments().getFeedLink().getHref();
CommentFeed commentFeed = service.getFeed(new URL(commentUrl),
CommentFeed.class);
for (CommentEntry comment : commentFeed.getEntries()) {
System.out.println(comment.getPlainTextContent());
}

您可以通过此代码获得最后25条评论。如果要获得25条以上的注释,则应阅读有关分页,最大结果和起始索引参数的信息。

关于eclipse - 如何使用Eclipse从特定视频中检索YouTube评论,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18508684/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com