How to get only recalculated cells from google spreadsheet via google spreadsheet API (gdata)

Gdata offers a way to get only modified cells from a google spreadsheet based on a timestamp. How to create a timestamp for calling Gdata?

i.e. "Only records with a published time equal to or later than the specified timestamp will be returned." setPublishedMax () https://developers.google.com/gdata/javadoc/com/google/gdata/client/Query#setPublishedMax(com.google.gdata.data.DateTime)

Is there a way to pull the current time from the server? If I create a local timestamp, how to synchronize it, what time zone?

+1
java google-spreadsheet-api gdata
source share
1 answer

impossible, it produces:

com.google.gdata.util.ServiceForbiddenException: OK This service does not support updated-min

the question is here: https://code.google.com/a/google.com/p/apps-api-issues/issues/detail?id=1388

+1
source share

All Articles