Stack Exchange API 中的日期格式
当我查询 Stack Overflow(使用它的 API)来获取一些数据(问题/答案/等)时,我得到以下 JSON 响应:
"down_vote_count": 0,
"last_activity_date": 1300830790,
"creation_date": 1300829790,
last_activity_date
是一个 10 位数字,对应于 1970 年的某个日期。我测试今天的时间戳(在 Java 中,如果它很重要)我得到一个 13 位数字。
我收到的响应中日期时间戳的格式是什么?如何将其转换为常规 Unix 时间戳?
谢谢。
When I query Stack Overflow (using it's API) to get some data (questions/answers/etc) I get the following JSON response:
"down_vote_count": 0,
"last_activity_date": 1300830790,
"creation_date": 1300829790,
The last_activity_date
is a 10 digit number corresponding to some date in 1970. when I test today's timestamp (in Java if it's important) I get a 13 digit number.
What is the format of the date timestamps in the responses I get? How do I translate it to regular Unix timestamp?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它采用
"d MY h:i"
格式。所以如果你使用 php 你可以这样做:it is in the
"d M Y h:i"
format. so if you're using php you can do :我知道这是一篇旧帖子,但
"last_activity_date": 1300830790
实际上是 Unix 时间戳,它翻译为 Tuesday, March 22, 2011 9:53:10 PM这个网站 https://www.epochconverter.com/ 有一个快速转换器和一些用于翻译的代码。
I know it is an old post but the
"last_activity_date": 1300830790
is actually a Unix timestamp, and it translates to Tuesday, March 22, 2011 9:53:10 PMThis site https://www.epochconverter.com/ has a quick converter and some code to do the translation.