@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.
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
This shouldn’t be marked as resolved until the plugin has actually been updated.
I just pushed this fix in version 1.1 of the plugin. You should be able to update in your WordPress dashboard.