Found my answer...

"Picasa Web Albums supports the standard Google Data APIs start-index
and max-results parameters. The user-based and community search feeds
support the q full-text search query parameter. Picasa Web Albums does
not currently support the other standard parameters."

http://code.google.com/apis/picasaweb/docs/2.0/reference.html

Oh well... Wonder if they will be added in the future?


On Feb 25, 11:52 am, eric <[email protected]> wrote:
> I'm trying load all photos in a specified album for a given user that
> have been added or modified since a certain time....
>
> I tried:
>
> String url = "http://picasaweb.google.com/data/feed/api/user/default/
> albumid/" + albumId;
> URL feedUrl = new URL(url);
> Query loadQuery = new Query(feedUrl2);
> loadQuery.setUpdatedMin(new DateTime(new Date().getTime() - (1000 * 60
> * 60 * 24)));
> AlbumFeed feed = service.query(loadQuery, AlbumFeed.class);
>
> But got an error saying that update_min wasn't a valid parameter for
> this feed.  Is there another way to achieve this sort of thing?  Sorry
> if this has already been posted.  I tried searching, but couldn't find
> anything similar.
>
> Thanks!
> Eric

-- 
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.

Reply via email to