简体   繁体   中英

Transferring data from gae datastore to a google docs spreadsheet

My gae application collects large amounts of numerical data. Instead of having users download it, is it possible to create a google docs spreadsheet and save the outgoing bandwidth?

The idea is to create a google docs spreadsheet with the data which the user can then access and if he downloads the data to his computer, it would not count as bandwidth used by my application.

To call external APIs over Http you, or the library that you use, would need to make URLFetch calls, which count towards outgoing quota .

So you would only save on outgoing bandwidth cost if all users downloaded the same data, eg no per-user generated data. Even then the limits dor Google Docs apply: spreadsheet of max 20Mb in size and max 400k cells.

Also, in case of one shared spreadsheet you would not be able to control access to it. Everyone with the Url would be able to download it.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM