[google-appengine] Re: how to get over 1 mb respose size url fetch api limit?

2009-09-26 Thread Prashant
thanks a lot kmacleod. i will try it On Sat, Sep 26, 2009 at 4:07 PM, Kenneth wrote: > > Have you tried the http range header? The other side would have to > understand it which is unlikely for dynamic content, but it is the > only option I could see working. > > Run this in a loop, giving

[google-appengine] Re: how to get over 1 mb respose size url fetch api limit?

2009-09-26 Thread Kenneth
Have you tried the http range header? The other side would have to understand it which is unlikely for dynamic content, but it is the only option I could see working. Run this in a loop, giving the correct bytes: result = urlfetch.fetch(url=url, payload=form_data,

[google-appengine] Re: how to get over 1 mb respose size url fetch api limit?

2009-09-25 Thread Joshua Smith
Oh. I thought you meant the 1MB limit on downloads OUT of your app. No idea about URL Fetch API, haven't use it... On Sep 25, 2009, at 9:54 AM, Prashant wrote: > what do you mean by storing files on Amazon? i am talking about URL > Fetch api limit ... > > On Fri, Sep 25, 2009 at 6:55 PM, Josh

[google-appengine] Re: how to get over 1 mb respose size url fetch api limit?

2009-09-25 Thread Prashant
what do you mean by storing files on Amazon? i am talking about URL Fetch api limit ... On Fri, Sep 25, 2009 at 6:55 PM, Joshua Smith wrote: > > Store the files on Amazon S3. > > If you need to generate the content dynamically, you're out of luck. > > On Sep 25, 2009, at 9:21 AM, Prashant wrote:

[google-appengine] Re: how to get over 1 mb respose size url fetch api limit?

2009-09-25 Thread Joshua Smith
Store the files on Amazon S3. If you need to generate the content dynamically, you're out of luck. On Sep 25, 2009, at 9:21 AM, Prashant wrote: > Hi, > > I want to fetch urls having more than 1mb response size. is there > any way to get around 1 mb response size limit? > > thanks. > > > --~