Google Excution API不接受长json

时间:2016-08-12 08:04:03

标签: json google-apps-script google-api google-api-dotnet-client

我正在向Google Execution API发送数据 - 我已经在脚本中使用函数来获取json中的参数并将其放入新的Google表格中。使用小数据它没有问题,但我有大数据要导出 - 例如,在有问题的导出中发送的JSON在格式化时有580k行:

[
     {
        "productionDate": "12/08/2016",
        "legacyCode": null,
        "quantity": 1,
        "customer": "tst1",
        "customerAddress": "add1",
        "addressLegacyCode": "AD1"
    },
    {
        "productionDate": "12/08/2016",
        "legacyCode": null,
        "quantity": 1,
        "customer": "cust2",
        "customerAddress": "add1",
        "addressLegacyCode": "AD2"
    }
]

有没有人知道是否有特定的参数长度限制要发送给谷歌。

我收到错误:

[16-08-12 09:45:01:364 CEST] Starting execution
[16-08-12 09:45:01:373 CEST] Execution failed: Script function not found:  [0 seconds total runtime]

1 个答案:

答案 0 :(得分:0)

所以是的,数据太长,无法包含在发送给Google API的参数中。

我只是想指出这一点,因为错误信息不清楚是否失败。