I am querying a Picasa gallery and when I dig into the entries that are returned, I can’t find the full size image. I can only see a much smaller, re-sized image (data[0].Content.AbsoluteUri). I know Google retains the full size image because I can see it when I view my Picasa gallery online. Where is the full size image?
var picasaService = new PicasaService("Gallery");
var photoQuery = new PhotoQuery(PicasaQuery.CreatePicasaUri("GOOGLEUSERNAME", "GALLERYID"));
var photoFeed = picasaService.Query(photoQuery);
var data = photoFeed.Entries;
short answer:
media:group/media:content[@url] path in a query to get the gdata photo ENTRY from the picasa GData service contains the link you want.
Longer answer:
Using the oauth 2.0 playground for a query to get the entry of one of my photos…
Note: filter response using http://json.parser.online.fr/
The link to the large photo that you want is in the url attribute above…
Using the “fields=” tag, you can directly get the link as in below req/ resp from gdata…