views:

9

answers:

0

I'm trying to use the .net API library to get a single image by ID from Picasa.

So far, I've tried to find the correct call by doing:

  • new Photo(); but there are no constructor params to tell it which photo to get
  • new Entry(); same as above
  • PicasaQuery.CreatePicasaUri; but I have to specify the albumId as well then, which I don't have.

I also can't seem to find the REST call for this in the API documentation (with which I could circumvent the .net API completely).

I've of course Googled this, but either nobody seems to want to get a single image by ID or I am missing the obvious (or this is a crazy scenario...).