0
Google Execution APIにデータを送信しています - スクリプトでjsonでパラメータを取得して新しいGoogle Sheetに入れる機能があります。小さなデータで、それは問題なく機能していますが、私は、輸出に大きなデータを持っている - このようにフォーマットする場合たとえば、問題のエクスポートに送信されるJSONは580Kの行がありますがあればGoogle Excution APIがlong jsonを受け付けない
[
{
"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]
クォータと制限事項は次のとおりです。https://developers.google.com/apps-script/guides/services/quotasそれが問題なのかどうかはわかりません。 JSON構造にエラーがないことを100%確信していますか?Google Execution APIには適切なエラー処理がありますか? – some1