我的代码:

foreach (PicasaEntry entryAlbuns in feedAlbuns.Entries)
{
   AlbumAccessor ac = new AlbumAccessor(entryAlbuns);
   PhotoQuery photos = new PhotoQuery(PicasaQuery.CreatePicasaUri("admin@localhost", ac.AlbumTitle));
   PicasaFeed feedPhotos = service.Query(photos);
}


当调试器进入PicasaFeed行时,feedPhotos = service.Query(photos);得到一个错误


  远程服务器返回错误:
  (404)找不到。


检查接受的参数:



PS:出于安全原因,我将电子邮件帐户替换为admin @ localhost。

最佳答案

我有同样的问题。

对于Google API 1.2.2.0
使用AlbumAccessor.Name代替AlbumAccessor.AlbumTitle。
Google应该在文档中使其更明显。

对于Google APL 1.4.0.2
使用AlbumAccessor.Id代替AlbumAccessor.AlbumTitle。
Google应该在文档中使其更明显。

样例代码:

AlbumAccessor ac = new AlbumAccessor(AlbumEntry);
PhotoQuery query = new PhotoQuery();
query.Uri = new Uri(PicasaQuery.CreatePicasaUri(_login,AlbumAccessor.Id));

photoFeed = picasaService.Query(query);

07-24 09:36