Get thumbnail of the newest picasa picture using the Google Data Api -


what want simple, once user logged in want retrieve newest picture uploaded picasa show preview gallery.

i had solution querying for:

https://picasaweb.google.com/data/feed/api/user/default?kind=photo&max-results=1&thumbsize=320&fields=entry(media:group(media:thumbnail))

however no longer works, believe because way deprecated.

basically using partial response shown here want xml response can parse. (i got parsing figured out).

the problem can't seem find "right" combination of field values give me 1 picture is not user icon. using old way described above not getting single one.

you may try "listing photos uploaded":

form documentation:

it possible retrieve photos associated user, without specifying particular album. following request retrieves last 10 photos uploaded userid:

get https://picasaweb.google.com/data/feed/api/user/userid?kind=photo&max-results=10 

https://developers.google.com/picasa-web/docs/2.0/developers_guide_protocol#photos


Comments

Popular posts from this blog

java - Date formats difference between yyyy-MM-dd'T'HH:mm:ss and yyyy-MM-dd'T'HH:mm:ssXXX -

c# - Get rid of xmlns attribute when adding node to existing xml -