Hello, I'm sorry to see that you're having trouble. The information you're looking for is here:
https://developers.google.com/picasa-web/docs/2.0/reference#Parameters If you add the imgmax and/or thumbsize parameters to your requests, you will be able to request to sizes that you are looking for as either the content image or the list of thumbnails (comma--seperated list of sizes). You'll probably want to use ?imgmax=2048 to get the size image that Google+ photos automatically resize for free storage. So when you make your request for photos: gd_client.GetFeed( '/data/feed/api/user/%s/albumid/%s?kind=photo' % ( username, album.gphoto_id.text)) ... just add that param to the URL: gd_client.GetFeed( '/data/feed/api/user/%s/albumid/%s?kind=photo&imgmax=%s' % ( username, album.gphoto_id.text, content_size)) Let me know if that doesn't work, or if you need more information about it. Thanks, -Mike On Tue, Nov 20, 2012 at 12:11 PM, Amir Eldor <[email protected]> wrote: > Hello, > > I'm using the Python GData library to get a photo feed for an album. I get > relevant thumbnails and sizes, but I can't find the URL to the original > uploaded image. Where "entry" is the > `pws.GetFeed(uri=album.GetPhotosUri()).entry`, What I get is: > > entry.width # <original resolution width> > entry.height # <original resolution height> > entry.content.src # <URL to a 'shrinked' image> > > I also get Media RSS "content" list which contains only one item which is > not in the original size. Also a "thumbnail" list of 3 lovely thumbnails. > > In Google+, I can view the images in various sizes, in a greater > resolution than those I get with the Python library. > > I've been sitting around with all of this Atom madness and couldn't > understand what is going on and where can I get a normal reference of what > data I get from different requests, so if someone may shed some light about > it it would be great. > > Thanks. > > -- > 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/-/dfs5Rfus2REJ. > 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. > -- You received this message because you are subscribed to the Google Groups "Google Picasa Web Albums 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-picasa-data-api?hl=en.
