I’m using the spreadsheet JSON api on a public read-only document. Is there a way to not receive the links of the individual cells and all the extra bloat? I just want the data.
My request is constructed as
http://spreadsheets.google.com/feeds/list/DOCKEY/public/values?alt=json-in-script&callback=callback
Eliminating the category and link objects would vastly shrink the response..
I could use basic instead of values, but then I would have to parse the content.$t. to get the values….
Is there another way I’m not finding?
Thanks.
You might consider using Apps Script, which will provide you with methods to retrieve the values of the cell range you specify:
https://developers.google.com/apps-script/class_range#getValues