一段时间后如何更新YouTube评论?

时间:2019-07-14 15:48:52

标签: youtube-api

我正在尝试使用https://developers.google.com/youtube/v3/docs/commentThreads/listto获取特定频道或视频的评论。

在初次尝试时,我可以获得前100条评论。但是我需要设置一种方法来获取一段时间后已更新的注释。

说我上午12点以后更新了最后一组评论,现在我需要上午10.00点以后更新的评论列表!

我正在使用Youtube Java SDK执行此操作,下面是我的代码

private static Credential credential;
List<CommentThread> channelComments = null;
        CommentThreadListResponse commentsReponse;
        try {
            commentsReponse = youtube.commentThreads().list("snippet").setChannelId(channelId)
                    .setTextFormat("plainText").execute();
            channelComments = commentsReponse.getItems();
        } catch (IOException e) {
            e.printStackTrace();
        }

0 个答案:

没有答案