Google 执行 API 不接受长 json
Google Excution API not accepting long json
我正在将数据发送到 Google 执行 API - 我在脚本中有函数可以在 json 中获取参数并将其放入新的 Google Sheet。对于小数据,它可以正常工作,但我有大数据要导出 - 例如,在有问题的导出中发送的 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"
}
]
有谁知道发送到 google 的参数长度是否有特定限制。
我遇到错误:
[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]
所以是的,数据太长,无法包含在发送给 Google API 的参数中。
我只是想指出这一点,因为错误消息并不清楚是什么失败了。
我正在将数据发送到 Google 执行 API - 我在脚本中有函数可以在 json 中获取参数并将其放入新的 Google Sheet。对于小数据,它可以正常工作,但我有大数据要导出 - 例如,在有问题的导出中发送的 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"
}
]
有谁知道发送到 google 的参数长度是否有特定限制。
我遇到错误:
[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]
所以是的,数据太长,无法包含在发送给 Google API 的参数中。
我只是想指出这一点,因为错误消息并不清楚是什么失败了。