Ebeo / google-gdata

Automatically exported from code.google.com/p/google-gdata
0 stars 0 forks source link

Documentation for the Google Picasa Api has been deprecated for a long time. #451

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
When is the documentation and references going to be updated :
http://code.google.com/apis/picasaweb/docs/1.0/developers_guide_dotnet.html

All the classes in the above link (AlbumEntry, PhotoEntry) apparently are 
deprecated and have been since 1.6. I had to figure out mostly with trail and 
error how to use the newer classes.

From the documentation chm file with the **1.6 .net Client library**, this is 
the only sample I could find:

RequestSettings settings = new RequestSettings("yourApp"); 
 settings.PageSize = 50; 
 settings.AutoPaging = true; 
 PicasaRequest pr = new PicasaRequest(settings); 
 Feed<Photo> feed = c.GetPhotos(); //c=??
  foreach (Photo p in feed.Entries) { 
 Console.WriteLine(d.Title); //d??
}

It would be real nice if there was some decent updated documentation.

Original issue reported on code.google.com by gidisr...@gmail.com on 8 Dec 2010 at 2:34