php 프로젝트내에 알림톡을 보내기 위한 API를 설치중에 있습니다.
에 로 post 요청을 아래와 같이 할 경우,
$param =
array("client_id" => CLIENT_ID, //CLIENT_ID
"message_type" => "AT", // AT : 알림톡
"sender_key" => SENDER_KEY, //발신프로필키
"phone_number" => "010-0000-0000", // 받는사람 번호
"message" => $message, //메시지
"template_code" => "C000000500_00002", //템플릿 코드
"sender_no" => SENDER_NO //발신자 전화번호
);
아래와 같은 response를 받을 수 있었습니다.
-
sendRes:
-
body: {code: ‘API_500’, message: 'null media type is not supported. Supported media types are '}
-
code: 415
-
headers: {0: ‘HTTP/1.1 415’, Server: ‘nginx’, Date: ‘Fri, 17 Feb 2023 05:34:51 GMT’, Content-Type: ‘application/json;charset=UTF-8’, Content-Length: ‘91’, Connection: ‘keep-alive’, …}
-
raw_body: "{“code”:“API_500”,“message”:"null media type is not supported. Supported media types are “}”
이유와 해결법을 알려주실 수 있을까요??