Forum Replies Created

Viewing 1 replies (of 1 total)
  • 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

Viewing 1 replies (of 1 total)