views:

514

answers:

2
A: 

I had the same problem.

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);
garykindel
A: 

Check .. the title must have no space, if you use ac.name you will get the good name of album .... wish that help some people

Johana