I've faced ResponseTooLargeError
when using AppEngine's urlfetch.fetch
because my response was several Mb big. (doc)
I see there is a allow_truncate
param I can pass and it will truncate the response if too big. Is there any way then to request the rest of the response ? Something like making new calls to the same URL with an offset ?
Otherwise I don't really understand how this param can be useful (just checking if it returns without error ?)
Thanks