비전 api php로 해보려는데 500에러가 뜨는데 뭐가 문제인가요ㅠㅠ

$APIKEY = ‘앱키’;
$imageUrl = ‘이미지 주소’;

$ch = curl_init();
$headers = Array("Authorization: KakaoAk $APIKEY");

curl_setopt($ch, CURLOPT_URL, "https://dapi.kakao.com/v2/vision/adult/detect" );
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt(CURLOPT_POSTFIELDS,"image_url=$imageUrl");

$http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);

$postResult = curl_exec($ch);


header("Content-Type: text/html; charset=UTF-8");
echo "result : $postResult";

안녕하세요~
확인을 위해 앱 ID 알려주세요~


앱ID
https://developers.kakao.com/ 의 내 애플리케이션>앱 설정>요약 정보 : 기본정보에 있는 앱 ID
숫자로된 ID 입니다~
ex) 123456