Hi,
Thanks for indicating WP Widget Cache.
Got the same error, here’s a bugfix for simply-instagram-functions.php line 187
/**
* Get the most recent media published by a user.
*/
function sInstGetRecentMedia( $user_id, $access_token )
{
$apiurl = "https://api.instagram.com/v1/users/" . $user_id . "/media/recent/?access_token=" . $access_token;
$response = wp_remote_get( $apiurl );
if(is_array($response) && array_key_exists('body', $response))
{
$data = json_decode( $response['body'], true );
return $data;
}
else
{
return FALSE;
}
}