• Resolved pk825

    (@pk825)


    First of all thank you for sharing this useful plugin.
    I check and it works perfectly in order to import my Flickr photos into my WordPress site, but I would import the photos from a group that I have created (https://www.flickr.com/groups/apodgrag/). Do you think is it possible?

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Beau Lebens

    (@beaulebens)

    Hi, I imagine it might be possible with code modifications, but it is not something that the importer supports currently.

    It looks like you could make a different version/hack of the importer that made requests to this endpoint instead of for the specific user; https://www.flickr.com/services/api/flickr.groups.pools.getPhotos.html

    Thread Starter pk825

    (@pk825)

    Thank you for the quick replay and I suppose it could be possible to modify your plugin in order to get the group photos with the API you shared.
    I’ll try and I hope it’ll work 🙂

    Thread Starter pk825

    (@pk825)

    Hi,
    with a little hack in keyring-importer-flickr.php I could use your plugin!
    Just modified:
    $url = “https://api.flickr.com/services/rest/?”;
    //modificato per apodGrAG
    $params = array(
    ‘method’ => ‘flickr.groups.pools.getPhotos’,
    ‘api_key’ => $this->service->key,
    ‘group_id’ => ‘nnnnn@Nii’,
    ‘per_page’ => self::NUM_PER_REQUEST,
    ‘extras’ => implode( ‘,’, $extras ),
    );
    Thank you again

    Plugin Author Beau Lebens

    (@beaulebens)

    Great! Just be careful with updating the plugin, because it will wipe out those changes until you put them back into place.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Flickr Group Import’ is closed to new replies.