我的代码:
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) Not Found。
接受的检查参数:
PS:出于安全原因,我将我的电子邮件帐户替换为 admin@localhost。