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