Google App Engine 413 error (Request Entity Too Large)

青春壹個敷衍的年華 提交于 2019-12-23 01:41:48

问题


I've implemented an app engine server in Python for processing html documents sent to it. It's all well and good when I run it locally, but when running off the App engine, I get the following error:

"413. That’s an error. Your client issued a request that was too large. That’s all we know."

The request is only 155KB, and I thought the app engine request limit was 10MB. I've verified that I haven't exceeded any of the daily quotas, so anyone know what might be going on?

Thanks in advance!

-Saswat


回答1:


Looks like it was because I was making a GET request. Changing it to POST fixed it.



来源:https://stackoverflow.com/questions/25299681/google-app-engine-413-error-request-entity-too-large

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