什么是stash api的日期格式?

问题描述 投票:0回答:2

在下面的json响应中,createdDate和updatedDate的日期格式是什么?我不知道如何反向工作以找到api用于日期的格式。我在文档中找不到任何位置。

{
"size": 1,
"limit": 25,
"isLastPage": true,
"values": [
    {
        "id": 101,
        "version": 1,
        "title": "Talking Nerdy",
        "description": "It’s a kludge, but put the tuple from the database in the cache.",
        "state": "OPEN",
        "open": true,
        "closed": false,
        "createdDate": 1359075920,
        "updatedDate": 1359085920,
        "fromRef": {
            "id": "refs/heads/feature-ABC-123",
            "repository": {
                "slug": "my-repo",
                "name": null,
                "project": {
                    "key": "PRJ"
                }
            }
        },
        "toRef": {
            "id": "refs/heads/master",
            "repository": {
                "slug": "my-repo",
                "name": null,
                "project": {
                    "key": "PRJ"
                }
            }
        },
        "locked": false,
        "author": {
            "user": {
                "name": "tom",
                "emailAddress": "[email protected]",
                "id": 115026,
                "displayName": "Tom",
                "active": true,
                "slug": "tom",
                "type": "NORMAL"
            },
            "role": "AUTHOR",
            "approved": true
        },
        "reviewers": [
            {
                "user": {
                    "name": "jcitizen",
                    "emailAddress": "[email protected]",
                    "id": 101,
                    "displayName": "Jane Citizen",
                    "active": true,
                    "slug": "jcitizen",
                    "type": "NORMAL"
                },
                "role": "REVIEWER",
                "approved": true
            }
        ],
        "participants": [
            {
                "user": {
                    "name": "dick",
                    "emailAddress": "[email protected]",
                    "id": 3083181,
                    "displayName": "Dick",
                    "active": true,
                    "slug": "dick",
                    "type": "NORMAL"
                },
                "role": "PARTICIPANT",
                "approved": false
            },
            {
                "user": {
                    "name": "harry",
                    "emailAddress": "[email protected]",
                    "id": 99049120,
                    "displayName": "Harry",
                    "active": true,
                    "slug": "harry",
                    "type": "NORMAL"
                },
                "role": "PARTICIPANT",
                "approved": true
            }
        ],
        "link": {
            "url": "http://link/to/pullrequest",
            "rel": "self"
        },
        "links": {
            "self": [
                {
                    "href": "http://link/to/pullrequest"
                }
            ]
        }
    }
],
"start": 0

}

bitbucket-server
2个回答
0
投票

它看起来像一个UNIX时间戳。 https://en.wikipedia.org/wiki/Unix_time


1
投票

只是记下在我的情况下,它是一个UNIX时间戳,但我必须删除三个尾随零。例如。数据看起来像这样:

"createdDate":1555621993000 

如果解释为UNIX时间戳,那将是09/12/51265 @ 4:16 am(UTC)。

通过删除三个尾随零,我得到1555621993,这是正确的时间04/18/2019 @ 9:13 pm(UTC)

你的里程可能会有所不同,但这对我来说是一个重要发现:)

最新问题
© www.soinside.com 2019 - 2024. All rights reserved.