Skip to content Skip to sidebar Skip to footer

Gae - Urlfetch Multipart Post Not Working With Large Files

Im trying to post a file located in the Blobstore from GAE to another HTTP service (virustotal). the current snippet is working for small files (1 - 2 mb): import base64 import jso

Solution 1:

App Engine's urlfetch service limits the request size to 10 megabytes. If you have a paid app, you can use sockets (I'd recommend using httplib to simplify your code but make sure to configure httplib to use sockets instead of urlfetch).


Post a Comment for "Gae - Urlfetch Multipart Post Not Working With Large Files"