Hi all,
I am trying to get a list of all the photos within a certain album. To
do this according to the documentation I should use something like
this
PhotoQuery query = new PhotoQuery(PicasaQuery.CreatePicasaUri
(username, albumname));
PicasaFeed feed = service.Query(query);
foreach (PicasaEntry entry in feed.Entries)
{
Console.WriteLine(entry.Title.Text);
}
The problem is that the is no method CreatePicasaUri that takes the
album name, but it actually expects the Album ID (in the reference
http://code.google.com/apis/picasaweb/developers_guide_dotnet.html#ListPhotos
is written something else)
So how do I get the album ID programmatically having only the album
name?
Thank you for your answer
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---