Good afternoon, the translator script began to produce an error 404. I tried to run different keys and launch different domains. Still does not work. Is this really something I’ve picked up or where is the mistake?
array (2) {["code"] => int (404) ["message"] => string (45) "Maximum daily translated text volume exceeded"}
$url = 'https://translate.yandex.net/api/v1.5/tr.json/translate?key=trnsl.1.1.20161214T114634Z.0492e7b1ebd2d3b4.57c088043e2306103d52f62d96bbf3893cac7554&text=close&lang=ru&format=plain&options=1'; $curlObject = curl_init(); curl_setopt($curlObject, CURLOPT_URL, $url); curl_setopt($curlObject, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($curlObject, CURLOPT_SSL_VERIFYHOST, false); curl_setopt($curlObject, CURLOPT_RETURNTRANSFER, true); $responseData = curl_exec($curlObject); curl_close($curlObject); if ($responseData === false) { throw new Exception('Response false'); } var_dump(json_decode($responseData, true));