alexis-mignon / python-flickr-api

A python implementation of the Flickr API
BSD 3-Clause "New" or "Revised" License
367 stars 108 forks source link

nothing happens when adding pictures to a group #106

Closed alglez closed 5 years ago

alglez commented 5 years ago

When using

group.addPhoto(id=photoid)

nothing happens, there is no error, but the picture is not added to the group. Am I using this method incorrectly?

mtrovo commented 5 years ago

You're using the wrong positional parameter. It should be photo_id.

I tested it locally and it's working fine, let me know if you're still having issues.