我根据指南设置了所有内容:https://developers.google.com/gdata/articles/eclipse
从那以后,我该如何开始检索评论? 我是一个初学者,所以如果有人能提供一些代码来开始它会很棒。
答案 0 :(得分:0)
首先,您应该下载库并安装链接页面中显示的所需库。
要从YouTube视频中获取评论,您应该发送以下网址: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条评论,你应该阅读有关分页,最大结果,开始索引参数的信息。