4 messages in com.googlegroups.google-picasa-data-apiMust be overlooking something.. how t...
FromSent OnAttachments
rickcr04 Apr 2007 16:54 
Sven06 Apr 2007 10:05 
rickcr08 Apr 2007 22:08 
Sven09 Apr 2007 10:53 
Subject:Must be overlooking something.. how to retrieve comments from PhotoEntry?
From:rickcr (rick@gmail.com)
Date:04/04/2007 04:54:32 PM
List:com.googlegroups.google-picasa-data-api

I must be missing something obvious, I want to know how to get a handle to the comments that were added to a Photo. I'm currently iterating over PhotoEntry objects from my album as such:

List<PhotoEntry> photos = myAlbumFeed.getPhotoEntries(); for( PhotoEntry entry: photos ) { //was thinking I could somehow get the comments? }

I can get many things from a PhotoEntry object but I'm unclear how to get a handle to the comments?

If I can not get it directly through the api of a PhotoEntry what is the best way to get the comments when iterating over the photos? I was thinking there would at least be a reference to the comment ids, and from there I could construct a new URL to get the comments?

Hopefully I'm just being dense here:) Thanks for any help.