You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 12, 2018. It is now read-only.
What steps will reproduce the problem?
1. have album in https://picasaweb.google.com
2. feed uri (for examle)
https://picasaweb.google.com/data/feed/api/user/1/albumid/2
3. Call in python code
GetFeed("https://picasaweb.google.com/data/feed/api/user/1/albumid/2")
4. Return all photos - OK
5. Call in python code
GetFeed("https://picasaweb.google.com/data/feed/api/user/1/albumid/2", 2)
limit = 2
6. Traceback (most recent call last):
File "C:\Python27\upload_google.py", line 51, in <module>
photos = gd_client.GetFeed(album_uri, 2)
File "C:\Python27\lib\gdata\photos\service.py", line 180, in GetFeed
raise GooglePhotosException(e.args[0])
gdata.photos.service.GooglePhotosException: (404, 'Not Found', 'Invalid entity i
d: 6072579549061840897&max-results=2')
7. If use GET
https://picasaweb.google.com/data/feed/api/user/1/albumid/2?max-results=2
responce is ok, too
It seems that Python API calls & instead of ? (something like below incorrect
link)
/data/feed/api/user/1/albumid/2&max-results=2
Original issue reported on code.google.com by feec...@gmail.com on 21 Oct 2014 at 1:29