获取已发布的YouTube评论的确切时间

时间:2017-01-20 19:32:52

标签: time youtube youtube-api comments

我没有找到任何相关信息。

例如,当您查看YouTube评论时,旁边有一个时间戳,表示" 1小时前"。

现在是" 1小时前"不是一个精确的时间指示。它可能是1小时到1小时59分钟之间的任何事情。

因此有可能获得发布的YouTube评论的开除时间,例如'星期三18,9:36'

修改

这是我获得准确和修改时间的解决方案:

https://www.googleapis.com/youtube/v3/comments?part=snippet&fields=items(snippet/publishedAt,snippet/updatedAt)&id={COMMENT_ID}&key={YOUR_API_KEY}

1 个答案:

答案 0 :(得分:3)

是。 API返回完整的日期时间,正如您在json中看到的那样:

"publishedAt": datetime,
"updatedAt": datetime

https://developers.google.com/youtube/v3/docs/comments#resource