いつものように、Youtube API v2 を使用して、動画の 25 件以上のコメントを取得したいと考えています。ドキュメントによると、start-index パラメーターを使用して間隔を決定でき、maxresults パラメーターを使用して最大結果を決定できます。maxresults パラメータはデフォルトで 25 で、最大値は 50 です。反復的に最大 1000 のコメントを取得できます。ただし、このコードで maxresults パラメータと star-index パラメータを変更するにはどうすればよいですか。
YouTubeService service = new YouTubeService(key);
String videoEntryUrl = "http://gdata.youtube.com/feeds/api/videos/0nvfsNzV3Vc";
VideoEntry videoEntry = service.getEntry(new URL(videoEntryUrl), 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());
}