I’m also having this error but on the IMDB API app:
”
public function get($id = false,$type = ‘json’)
{
$param = array(
‘body’=>array(
‘key’=>$this->api_key,
‘id’=>$id,
‘type’=>$type
)
);
$response = wp_remote_post($this->url,$param);
if(@$response[‘response’][‘code’] == 200){
return wp_remote_retrieve_body($response);
}
else {
return $this->result;
}
}
”
Is there a simple code change I can make for it so that it will behave?
Any help greatly appreciated!