3

我正在使用 Notion API Beta,从具有我感兴趣的“文件和媒体”属性的表中读取页面。API 响应只是给了我在那里上传的文件的名称,但我没有实际访问它们的 URL。我错过了什么?谢谢。

{
  "Photo": {
    "id": "xxxx",
    "type": "files",
    "files": [
      {
        "name": "000150748673-ofnuhb-t500x500.jpg"
      }
    ]
  }
}

更新:答案


4

2 回答 2

4

Notion API 目前不支持文件上传或下载(Notion-Version: 2021-05-13)。它不会返回存储文件的 URL。

于 2021-05-27T20:32:28.300 回答
2

API 已更新,现在它为在 Notion 中上传的文件提供了一个经过身份验证的临时 URL。例如:

{
  "Photo": {
    "id": "xxxx",
    "type": "files",
    "files": [
      {
        "name": "000150748673-ofnuhb-t500x500.jpg",
        "type": "file",
        "file": {
          "url": "https://s3.us-west-2.amazonaws.com/...",
          "expiry_time": "2021-09-22T09:00:56.029Z"
        }
      }
    ]
  }
}
于 2021-09-22T08:02:33.530 回答