Google Drive Rest Api Files export limitation

前端 未结 2 1253
情话喂你
情话喂你 2021-01-12 20:21

I use rest api \"https://www.googleapis.com/drive/v3/files/fileId/export\" \"reference page\" to get google Doc

I have document size ~ 5 MB when i try to get the fil

2条回答
  •  孤城傲影
    2021-01-12 21:07

    As stated in the error message there is a limit to how big of a file the API can export. There is really nothing you can do to fix that your going to have to do it with smaller files.

    {
    "error": {
    "errors": [
    {
    "domain": "global",
    "reason": "exportSizeLimitExceeded",
    "message": "This file is too large to be exported."
    }
    ],
    "code": 403,
    "message": "This file is too large to be exported."
    }
    }
    

提交回复
热议问题