Yes, that sort of functionality can be implemented on AppEngine The blobstore provides much of the functionality. But there are other ways
Eg uploading a blob https://cloud.google.com/appengine/docs/python/blobstore/#Python_Uploading_a_blob Once uploaded, can 'serve' the blob https://cloud.google.com/appengine/docs/python/blobstore/#Python_Serving_a_blob You can make your handler work on any device. Its dynamic in that its processed by a script (to figure out what blob to serve) - but its static, in that the URL itself doesnt need to change, and can persist long term. Can also use Google Storage instead https://cloud.google.com/appengine/docs/php/googlestorage/user_upload ... once uploaded to Storage, it has a URL for direct access to the uploaded file. -- 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/CAJCAUuLHwXtHKmtE-bwwa7e%2BZOfucSndCfSd4Afmd%2BW23PrqcA%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
