2014-07-12 5 views
1

을 번역을 사용하여 구성되지 나는 브라우저 응용 프로그램에 대한 키를 생성 한 내 코드 (

$api_key = 'My Key is Here'; 


$response = file_get_contents('https://www.googleapis.com/language/translate/v2?key='.$api_key.'&q=hello%20world&source=en&target=de'); 

//decode json to array 
$json = json_decode($response); 

//show the json array in a readable format 
echo '<pre>'; 

//show array 
print_r($json); 

나는 다음과 같은 오류가

stdClass 개체 을 얻고 아래에 주어진다 [에러 => stdClass ( [오류] 오브젝트 => 어레이 ( [0] => stdClass 개체 ( [도메인] => usageLimits [이유] => [메시지] accessNotConfigured => 액세스 할 구성되었습니다. 프로젝트의 API를 활성화하려면 Google Developers Console을 사용하십시오.

  ) 

     [code] => 403 
     [message] => Access Not Configured. Please use Google Developers Console to activate the API for your project. 
    ) 

)

) 는

당신이 날 내가 놓친거나 내가 위의 오류를 얻을 잘못한 것을, 알아 내기 위해 도움이 될하시기 바랍니다.

많은 문의 사항

답변

0

개발자 콘솔에서 번역 API를 사용하도록 설정했는지 확인하십시오. enter image description here