What can be the maximum “POST” size I can have?

岁酱吖の 提交于 2019-12-10 21:46:10

问题


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.


回答1:


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.



来源:https://stackoverflow.com/questions/26732688/what-can-be-the-maximum-post-size-i-can-have

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!