flickrapi

Retrieving flickr favorites

I can't get this to work... what could be the problem? import flickrapi api_key = '1234...' flickr = flickrapi.FlickrAPI(api_key) user = '43699959@N02' favs = flickr.favorites_getPublicList(user_id = user) >>> favs.items() [('stat', 'ok')] >>> favs.text '\n' Where are my favorite photo's? Note: It does work via this testing page:...

Json problem in flickr

I have this json but I have no idea how to get 7796249@N02 a:2:{s:4:"user";a:3:{s:2:"id";s:11:"7796249@N02";s:4:"nsid";s:11:"7796249@N02";s:8:"username";a:1:{s:8:"_content";s:9:"ilhan.z.y";}}s:4:"stat";s:2:"ok";} ...

XML "not well-formed (invalid token)" error from FlickrApi

First of all : I'm using the well known (and tested I suppose) flickrapi. I was testing synchronization of flickr photos with my project and everything worked fine till I reached some specific files. Then python's xml parser failed to parse xml to string (and error from topic). Debug gave me line and column in the xml, so I've exported i...