Hello, am developing an android app. i got the below code from google 
developers guide. 

   *PicasawebService myService = new PicasawebService("myApp");
myService.setUserCredentials("username", "password");
URL url = new URL 
("https://picasaweb.google.com/data/feed/api/user/myusername/albumid/myalbumid";);
AlbumFeed  feed= myService.getFeed(url, AlbumFeed.class);

for(PhotoEntry photo : feed.getPhotoEntries()){
 System.out.println(photo.getTitle().getPlainText());*
*
 }
*

but the entries in the feed returned are of type GphotoEntry and not 
PhotoEntry so the for loop is not entered.
The gdata-photos-meta2.0.jar and data-photos-2.0.jar are included in my 
project libraries
Thank You

-- 
You received this message because you are subscribed to the Google Groups 
"Google Picasa Web Albums API" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-picasa-data-api/-/n0c70TpaHBUJ.
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