So your problem is that create_upload_url creates a long, verbose url. One not repeatable?
You want a nice simple 'endpoint' to upload to? could directly handle the POST yourself in a dynamic handler (accept the uploaded file directly) http://stackoverflow.com/questions/25645253/python-parsing-multipart-form-data-request-on-server-side Its a little more tricky to then send the file to the BlobStore - esp with the deprecation of the Files API. ... probably easier to then send the file direct to Google Storage. https://cloud.google.com/appengine/docs/python/googlecloudstorageclient/ On 30 July 2015 at 16:18, Matthew Rappard <[email protected]> wrote: > I just want to know if it's possible to make the following HTML code, work > with the Google App Engine. I.E. this form will upload a file to a "STATIC" > address that is stored in the Google App Engine. It can't be dyanmic it has > to be the same URL across all devices. > > > > > <html> > <form action="THE_URL" method="POST" enctype="multipart/form-data"> > Application name:<input type="text" name="appname"> > Application version:<input type="text" name="appversion"> > Email from:<input type="text" name="emailfrom"> > Email subject:<input type="text" name="emailsubject"> > Crash GUID:<input type="text" name="crashguid"> > MD5:<input type="text" name="md5"> > Attach ZIP file:<input type="file" name="crashrpt"> > <input type="submit" name="Submit"> > </form> > </html> > > -- > You received this message because you are subscribed to the Google Groups > "Google App Engine" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at http://groups.google.com/group/google-appengine. > To view this discussion on the web visit > https://groups.google.com/d/msgid/google-appengine/d1475ae7-9a40-4c7e-8884-e418aaf19823%40googlegroups.com > <https://groups.google.com/d/msgid/google-appengine/d1475ae7-9a40-4c7e-8884-e418aaf19823%40googlegroups.com?utm_medium=email&utm_source=footer> > . > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/CAJCAUuKPZPRo-jDdpoL2XzTV2qZ5VJCgx6t-qFBr%3DKqY%2Be_gxg%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
