I'm writing a python GAE program. What I want to do is to download a file using HTTP protocol and write it into Google cloud storage.
But if the file that I'm requesting is big (bigger than 1Mb),
url = urllib2.urlopen(link)
won't work.
It always throws a ResponseTooLargeError
This post explains why this error is shown:
https://groups.google.com/forum/?fromgroups=#!topic/google-appengine/QEm-19vdcU4
However it doesn't solve my problem, which is to download a big file into cloud storage.
Can anyone help me? Thanks!