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
I am trying to get the Photoset object of a specific Flickr Photoset. I do not see how to use the flickr_api to call a specific Photoset by its id. Is this possible? I do see that I can get all the photo sets of a specific user using user.getPhotosets(). The problem here is the returned list does not seem to work with the Walker. Here is an example:
You want to pass in the function and not the List coming from the response. Try the code below - which removed the parenthesis on the getPhotosets() callout.
I am trying to get the Photoset object of a specific Flickr Photoset. I do not see how to use the flickr_api to call a specific Photoset by its id. Is this possible? I do see that I can get all the photo sets of a specific user using user.getPhotosets(). The problem here is the returned list does not seem to work with the Walker. Here is an example:
flickr_photosets = user.getPhotosets()
flickr_photosets_list = flickr_api.Walker(flickr_photosets)
Errors out: TypeError: 'FlickrList' object is not callable
What are my options here?
Thanks for any help!
The text was updated successfully, but these errors were encountered: