0

I'm building a relatively big Google Docs file using Google Apps Script, and I basically need to inject a lot of data in order to build it programatically.

I'm thinking of executing a function init() and passing the json string as it value through the Execution API. I'm worried about the max size of the string that I can pass. What's the max size?

Christopher Francisco
  • 15,672
  • 28
  • 94
  • 206

1 Answers1

0

Checked the documentation for the docs on Execution API but there is no mention of such limit. If it follows the standard protocol RFC 2616 as mentioned in this thread, then your big payload may push through. The only thing you need to do now is actually try.

Community
  • 1
  • 1
ReyAnthonyRenacia
  • 17,219
  • 5
  • 37
  • 56