On Fri, Jun 20, 2014 at 12:15 AM, Rakhi Kankan <[email protected]> wrote:
> Can I load static files from my google drive ? > >From Google Drive as in drive.google.com or static files within your App Engine application? You can read static files in from both, but they require different steps. For Google Drive, you can use the Drive API: https://developers.google.com/drive/web/about-sdk . If you need to read in static files from your application deployment, you'll have to consult the language docs for the proper way to handle it. For example, a Java servlet can read in static files using *this.getServletContext().getResourceAsStream*. ----------------- -Vinny P Technology & Media Advisor Chicago, IL App Engine Code Samples: http://www.learntogoogleit.com -- 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. For more options, visit https://groups.google.com/d/optout.
