결제 인터페이스 웹 사이트에서 JSON POST를 수신하려고하는데 디코딩 할 수 없습니다.
인쇄 할 때 :
echo $_POST;
나는 얻다:
Array
이것을 시도해도 아무것도 얻지 못합니다.
if ( $_POST ) {
foreach ( $_POST as $key => $value ) {
echo "llave: ".$key."- Valor:".$value."<br />";
}
}
이것을 시도해도 아무것도 얻지 못합니다.
$string = $_POST['operation'];
$var = json_decode($string);
echo $var;
이것을 시도하면 NULL을 얻습니다.
$data = json_decode( file_get_contents('php://input') );
var_dump( $data->operation );
내가 할 때 :
$data = json_decode(file_get_contents('php://input'), true);
var_dump($data);
나는 얻다:
NULL
JSON 형식은 다음과 같습니다 (결제 사이트 문서에 따라).
{
"operacion": {
"tok": "[generated token]",
"shop_id": "12313",
"respuesta": "S",
"respuesta_details": "respuesta S",
"extended_respuesta_description": "respuesta extendida",
"moneda": "PYG",
"monto": "10100.00",
"authorization_number": "123456",
"ticket_number": "123456789123456",
"response_code": "00",
"response_description": "Transacción aprobada.",
"security_information": {
"customer_ip": "123.123.123.123",
"card_source": "I",
"card_country": "Croacia",
"version": "0.3",
"risk_index": "0"
}
}
}
결제 사이트 로그에 모든 것이 정상이라고 표시됩니다. 뭐가 문제 야?
json_decode
합니다. 그러나 서비스가 request body 에서 데이터를 전송 하는 것은 다른 이야기이며 file_get_contents('php://input')
그래야 작동합니다.
var_dump($_POST)
말은? 빈 배열입니까?