I'm using Cakephp 2.6.1 and I would like to use an extern api. For this, I must request an url like that:
$json = file_get_contents($url);
$data = json_decode($json);
I try with file_get_contents, curl and HttpSocket. And i have that error:
php_network_getaddresses: getaddrinfo failed: Name or service not known
I check php_info();
and allow_url_fopen
is On.
Thank you in advance to any one who may be able to give me some ideas.