Hi:
I have some problem as below:
AlbumFeed feed = myService.getFeed(feedUrl, AlbumFeed.class);
I will get null when use this way : feed.getPhotoEntries();
So I change another way to get photo and photo information:
AlbumFeed feed = mPService.getFeed(feedUrl, AlbumFeed.class);
Link link = feed.getEntries().get(0).getLink(Link.Rel.FEED, null);
URL url = new URL(link1.getHref());
PhotoFeed photofeed = mPService.getFeed(url1, PhotoFeed.class);
photofeed.getHeight() and so on, it works.
But I want to set some information about the photo, and now I can't
get a photoEntry from feed.getPhotoEntries() .
Please help me , what can I do if I want to set information ?
--
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/-/9sysLHNYKW8J.
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.