I'm using google-java-client api 1.14 and the project : Link<http://code.google.com/p/google-api-java-client/source/browse/shared/gdata/shared-sample-picasa/src/main/java/com/google/api/services/picasa/?repo=samples&r=3b975cdd035e01d1e8ecba1391556e598cdeb6cf>that I converted into .jar file
and I'm using this Sample: Link<http://code.google.com/p/google-api-java-client/source/browse/picasa-cmdline-sample/src/main/java/com/google/api/services/samples/picasa/cmdline/PicasaSample.java?repo=samples>to retrieve my albums from Picasa Web Everything is fine, I could run the code successfully but I couldn't retrieve all the albums I have in my Picasa Web account, It just returns 3 albums eventhough the it returns the total number of albums correctly. Here is the part of the code: PicasaUrl url = PicasaUrl.relativeToRoot("feed/api/user/xxxx?kind=album&access=all"); // execute GData request for the feed UserFeed feed = client.executeGetUserFeed(url); System.out.println("User: " + feed.author.name); System.out.println("Total number of albums: " + feed.totalResults); System.out.println("Total number of albums: " + feed.albums); The feed.totalResults returns the correct number of albums I have BUT feed.albums always returns list of 3 albums If I have more albums. I had no clue what the problem is I need your help getting my problem fixed.. Thank you very much :) -- You received this message because you are subscribed to the Google Groups "Google Picasa Web Albums API" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-picasa-data-api?hl=en. For more options, visit https://groups.google.com/groups/opt_out.
