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.