Viewing 4 replies - 1 through 4 (of 4 total)
  • @mike_the_man
    any movement on this? just downloaded and tried running the plugin, and nothing is pulling (either user or hashtag-based). getting a number of PHP Warnings and Notices, but no Errors in our logs. all folder permissions are set to 777. but we aren’t getting any results.

    Thread Starter mike_the_man

    (@mike_the_man)

    hi,

    yes, as it turned out there was a change in the api of instagram.

    go to your plugin directory-lib-instagram.class.php and find row 267 – getTagMedia function

    replace:
    return $this->_makeCall(‘tags/’ . $name . ‘/media/recent’, false, array(‘count’ => $limit));

    with:

    if($limit>0) {
    return $this->_makeCall(‘tags/’ . $name . ‘/media/recent’, false, array(‘count’ => $limit));
    }else{
    return $this->_makeCall(‘tags/’ . $name . ‘/media/recent’, true);
    }

    now it should work again.

    I hope I could help you!

    cheers,
    michael

    Plugin Author Andy Brudtkuhl

    (@abrudtkuhl)

    This shouldn’t be marked as resolved until the plugin has actually been updated.

    Plugin Author Andy Brudtkuhl

    (@abrudtkuhl)

    I just pushed this fix in version 1.1 of the plugin. You should be able to update in your WordPress dashboard.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Import Error – Changes in Instagram API’ is closed to new replies.