我正在使用Google云端硬盘剩余API列出我的Google云端硬盘文件。我正在读取驱动器中文件的元数据。这样,我就获得了RFC 3339格式的“创建时间”。 您能帮我将Google Drive Rest API返回的时间转换为IST吗?在Linux平台上有什么方法可以做到这一点?
{
"files": [
{
"id": "1y_GB6OCBENf_gDMAzAHdN",
"name": "testfile.jpg",
"webViewLink": "https://drive.google.com/file/d/1y_GB6OCBENf_gDMAzAHdN/view?usp=drivesdk",
"createdTime": "2019-06-17T02:08:50.959Z"
}
]
}
注意:我正在使用curl工具从我的Linux服务器访问Google驱动器剩余API。
答案 0 :(得分:1)
我知道您想获取文件的创建日期,将其转换为IST并在您的代码中使用它,但是如果我错了,请更正我。 您可以这样操作:
resource-name/resource-id/sub-resource-name/sub-resource-id
答案 1 :(得分:0)
您可以对parsing the ISO 8601
/RFC 3339
timestamp使用date
命令,然后对converting it to another timezone使用date
命令。