Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What can be the maximum "POST" size I can have?

Sorry if this is a duplicate question, but I couldn't find any substantial info on my concern.

Currently, I have a Java-GWT application which invokes a python script deployed on app engine. They communicate via REST.

So what is the maximum size for POST method I can send to Google App Engine where the script is deployed?

Is the limit same as specified in the link: https://groups.google.com/forum/#!topic/google-appengine-java/5V9W9ibq4Ns. Also any difference if we use Python instead of Java.

like image 467
akgaur Avatar asked Sep 18 '25 19:09

akgaur


1 Answers

On GAE the incoming request can not be longer than 32Mb. This includes the whole request size (command, path, headers), not only POST body. This is language independent.

like image 54
Peter Knego Avatar answered Sep 21 '25 14:09

Peter Knego