Ok, I see, I thought that fetch was just a straight forward HTTP POST, but now looking at the documentation I see that is part of the appengine python API (I'm not a python programmer). Thanks for the email limits link. So, that's the first part of my question answered, I definitely now understand the problem. It would be really great if someone could suggest me a way around this issue now. Maybe I can just use httplib to post directly?
Thanks, Matt On Nov 8, 7:17 pm, Robert Kluin <[email protected]> wrote: > Sorry, but re-read the bullet point about the size limit increases. > Specifically the last sentence: > "Note that API requests (e.g. memcache.set(), db.put()) are still > limited to 1MB in size." > > http://code.google.com/appengine/docs/python/mail/overview.html#Quota... > > Robert > > > > > > > > On Mon, Nov 8, 2010 at 04:49, mattbeedle <[email protected]> wrote: > > I'm having trouble with request size limiting, but I don't understand > > why. Im this blog post (http://googleappengine.blogspot.com/2009/02/ > > skys-almost-limit-high-cpu-is-no-more.html) and it seems to say that > > the limits on requests and responses were increased to 10mb. My > > application receives emails and then forwards them on to a website I > > run using urlfetch. Whenever I send an email with an attachment over > > 1mb, I see theseRequestTooLargeErrorerrors. Here is the actual > > piece of code that is failing, the error is occurring on the response > > =fetchline: > > > import logging, email, yaml > > from django.utils import simplejson as json > > from google.appengine.ext import webapp > > from google.appengine.ext.webapp.mail_handlers import > > InboundMailHandler > > from google.appengine.api.urlfetch importfetch > > from google.appengine.api.urlfetch import Error as FetchError > > > settings = yaml.load(open('settings.yaml')) > > > def callback(raw): > > result = {'email': {'raw': raw}} > > > response =fetch(settings['outbound_url'], > > payload=json.dumps(result), > > method="POST", > > headers={ > > 'Authorization': settings['api_key'], > > 'Content-Type': 'application/json' > > }, > > deadline=10 > > ) > > logging.info(response.status_code) > > if response.status_code != 200: > > raise FetchError() > > > class InboundHandler(InboundMailHandler): > > def receive(self, message): > > logging.info("Received a message from: " + message.sender) > > callback(message.original.as_string(True)) > > > It would be great if someone could explain to me why this is not > > working and how I can get around it, thanks. > > > -- > > You received this message because you are subscribed to the Google Groups > > "Google App Engine" group. > > To post to this group, send email to [email protected]. > > To unsubscribe from this group, send email to > > [email protected]. > > For more options, visit this group > > athttp://groups.google.com/group/google-appengine?hl=en. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
