I upload images with the following metadata in Java:
photo.setTimestamp(new Date());
I wish to query the album, for images with timestamp earlier than the
specified time stamp to be returned.
For this, I create a DateTime object with a time stamp set to
something in past.
Then use:
Query myQuery = new Query(feedUrl);
myQuery.setUpdatedMax(dt); // where dt is a DateTime object set to
some time in past
But when i execute the query, I get the following error:
This service does not support the 'updated-max' parameter.
I've tried to use:
myQuery.setPublishedMax(dt);
This returns:
This service does not support the 'published-max' parameter.
The service I'm using here is:
PicasawebService myService = new PicasawebService("CSUG");
What am i doing wrong here?
How else am i supposed to query the album for images with time stamp
set not later than "a specified time stamp"
--
You received this message because you are subscribed to the Google Groups
"Google Picasa Web Albums API" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-picasa-data-api?hl=en.