curl 전송시 한글깨짐 문제..
본문
function get_test_curl($data){
global $g5, $config;
$data = json_encode($data);
$method = "POST";
$url = 'https://받는url';
$headers = array(
"content-type: application/json;charset=UTF-8",
"accept-encoding: gzip"
);
$ch = curl_init($url);
$timeout = 900;
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_TIMEOUT, 30);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
curl_setopt($ch, CURLOPT_POST, true);
$response = curl_exec($ch);
curl_close($ch);
return $response;
}
$body_data = array(
"request_id" => "하나둘셋",
"pos_type" => "과일"
);
get_test_curl($body_data)
이렇게 데이터를 전송하는데
받는곳에서 한글이 깨진다고 합니다
어떻게 처리를 해야할까요?
아래는 보내는데이터 입니다
!-->!-->답변 2
전송측 서버( PHP)가 euckr은 아니겠죠?
// API POST 전송
function api_post($data, $url)
{
$data = json_encode($data);
//echo $data;exit;
$headers[] = "Content-Type: application/json; charset=utf-8";
$headers[] = "Data-Format: json";
$curl = curl_init();
curl_setopt($curl, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_POSTFIELDS, $data);
curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
curl_setopt($curl, CURLOPT_VERBOSE, true);
$response = curl_exec($curl);
curl_close($curl);
$response = json_decode($response, true);
return $response;
}
$data = array(
'compCd' => '', // 고객사코드 (*필수)
'gprodCd' => '', // 광고제품코드 (*필수)
'siteCd' => '', // 사이트코드 (*필수)
'data' => array(
'inowCd' => '', // 유입코드
'inowUrl' => '', // 유입URL
'accessIp' => $_SERVER['REMOTE_ADDR'], // 접근아이피
'memo' => '', // 비고
'name' => '', // 신청자명 (*필수)
'hp' => '', // 신청자전화번호 (*필수)
'gender' => '', // 신청자성별 (*필수)
'age' => '', // 신청자나이 (*필수)
'104' => '', // 구매목적
'105' => '', // 상담희망시간 (*필수)
'106' => '', // 구매동기 (*필수)
'107' => '', // 비고
) // 요청데이터
);
//print_r($data);exit;
$url = "API호출 주소";
$result = api_post($data, $url); // api 전송
//print_r($result); // 결과값
이걸로 해보시고, header 부분만 추가해야하면 추가해서 해보세요.
!-->
답변을 작성하시기 전에 로그인 해주세요.