It seems impossible to page through photos beyond #1000.  For example,

this query works:
http://picasaweb.google.com/data/feed/api/user/default?kind=photo&start-index=1&max-results=1000

but this query (only difference is start-index=10) gives 400 Bad Request:
http://picasaweb.google.com/data/feed/api/user/default?kind=photo&start-index=10&max-results=1000

It appears that the problems is simply that the check for "don't allow a 
request for >1000 results" is checking that (start-index + max-results <= 
1001) instead of (max-results <= 1000), as it should.  evidence:

this works:
http://picasaweb.google.com/data/feed/api/user/default?kind=photo&start-index=10&max-results=991

this doesn't ("Too many results requested"):
http://picasaweb.google.com/data/feed/api/user/default?kind=photo&start-index=10&max-results=992

cheers,
Ian

-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to