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

6 youtube time comments youtube-api

我没有找到任何这方面的信息。

例如,当您查看 YouTube 评论时,旁边会显示一个时间戳,显示“1 小时前”。

现在是“1 小时前”,不是精确的时间指示。可以是从 1 小时 00 分钟到 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}

小智 3

是的。API 返回完整的日期时间,如您在此处的 json 中所见:

"publishedAt": datetime,
"updatedAt": datetime
Run Code Online (Sandbox Code Playgroud)

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