picasa interface
hi can anyone tell me wat technology is used for making picasa software.?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Roei BarPosted Sep 9, 2009, 3:41 PM
if you want you can connect to picasa web via the Picasa API like this
For Google API 1.2.2.0 Use the AlbumAccessor.Name instead of AlbumAccessor.AlbumTitle. Google should make this more obvious in the documentation.
For Google APL 1.4.0.2 Use the AlbumAccessor.Id instead of AlbumAccessor.AlbumTitle. Google should make this more obvious in the documentation.
Sample Code:
AlbumAccessor ac = new AlbumAccessor(AlbumEntry);
PhotoQuery query = new PhotoQuery();
query.Uri = new Uri(PicasaQuery.CreatePicasaUri(_login,AlbumAccessor.Id));
photoFeed = picasaService.Query(query);