hi again!

im messing around with the webalbum api. tried some stuff and came
along with showing album information on my site.
i searched for the link of the albums thumbnail and in the end i got
it ! well now i want to select an album and get the fotos in the
album . well i get the title the name etc of the fotos but cant find a
way to get the photos link to show it on my site!

URL photoUrl = new URL("http://picasaweb.google.com/data/feed/api/
user/" + googleUserId + "/album/" + albumName + "+?kind=photo");
                        PhotoFeed myPhotoFeed = myService.getFeed(photoUrl,
PhotoFeed.class);
                        photoList = myPhotoFeed.getEntries();

                        PhotoEntry entry = new PhotoEntry();
                        for (GphotoEntry gphotoEntry : photoList) {
                                System.out.println("Photo: " +
gphotoEntry.getTitle().getPlainText() + " -> " +
photoEntry.getSelfLink().getHref());
                                
System.out.println(gphotoEntry.getSummary().getPlainText());
                        }


greetings,

fritz
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Data 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-help-dataapi?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to