[php] PHP cURL로 JSON 데이터를 POST하는 방법?

여기 내 코드가 있습니다.

$url = 'url_to_post';
$data = array(
    "first_name" => "First name",
    "last_name" => "last name",
    "email"=>"email@gmail.com",
    "addresses" => array (
        "address1" => "some address",
        "city" => "city",
        "country" => "CA",
        "first_name" =>  "Mother",
        "last_name" =>  "Lastnameson",
        "phone" => "555-1212",
        "province" => "ON",
        "zip" => "123 ABC"
    )
);
$data_string = json_encode($data);
$ch=curl_init($url);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_POSTFIELDS, array("customer"=>$data_string));
curl_setopt($ch, CURLOPT_HEADER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER,
    array(
        'Content-Type:application/json',
        'Content-Length: ' . strlen($data_string)
    )
);

$result = curl_exec($ch);
curl_close($ch);

그리고 다른 페이지에서 게시물 데이터를 검색하고 있습니다.

    print_r ($_POST);

출력

HTTP/1.1 200 OK
Date: Mon, 18 Jun 2012 07:58:11 GMT
Server: Apache
X-Powered-By: PHP/5.3.6
Vary: Accept-Encoding
Connection: close
Content-Type: text/html

Array ( ) 

따라서 자체 서버에서도 적절한 데이터를 얻지 못합니다. 빈 배열입니다. http://docs.shopify.com/api/customer#create 에서와 같이 json을 사용하여 REST를 구현하고 싶습니다.



답변

json을 잘못 게시하고 있습니다.하지만 올바른 경우에도 테스트 할 수 없습니다 print_r($_POST)( 이유를 읽으십시오 ). 대신 두 번째 페이지 file_get_contents("php://input")에서 POSTed json을 포함하는을 사용하여 수신 요청을 탐색 할 수 있습니다 . 수신 된 데이터를보다 읽기 쉬운 형식으로 보려면 다음을 시도하십시오.

echo '<pre>'.print_r(json_decode(file_get_contents("php://input")),1).'</pre>';

코드 Content-Type:application/json에서을 표시 하고 있지만 모든 POST 데이터를 “고객”POST 필드의 값만 json 인코딩하지는 않습니다. 대신 다음과 같이하십시오.

$ch = curl_init( $url );
# Setup request to send json via POST.
$payload = json_encode( array( "customer"=> $data ) );
curl_setopt( $ch, CURLOPT_POSTFIELDS, $payload );
curl_setopt( $ch, CURLOPT_HTTPHEADER, array('Content-Type:application/json'));
# Return response instead of printing.
curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true );
# Send request.
$result = curl_exec($ch);
curl_close($ch);
# Print response.
echo "<pre>$result</pre>";

참고 : 직접 Shopify API와 인터페이스하는 대신 타사 라이브러리 를 사용 하면 이점이있을 수 있습니다 .


답변

$url = 'url_to_post';
$data = array("first_name" => "First name","last_name" => "last name","email"=>"email@gmail.com","addresses" => array ("address1" => "some address" ,"city" => "city","country" => "CA", "first_name" =>  "Mother","last_name" =>  "Lastnameson","phone" => "555-1212", "province" => "ON", "zip" => "123 ABC" ) );

$postdata = json_encode($data);

$ch = curl_init($url);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $postdata);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json'));
$result = curl_exec($ch);
curl_close($ch);
print_r ($result);

이 코드는 저에게 효과적이었습니다. 당신은 시도 할 수 있습니다…


답변

바꾸다

curl_setopt($ch, CURLOPT_POSTFIELDS, array("customer"=>$data_string));

와:

$data_string = json_encode(array("customer"=>$data));
//Send blindly the json-encoded string.
//The server, IMO, expects the body of the HTTP request to be in JSON
curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);

“다른 페이지”의 의미를 알 수 없습니다. ‘url_to_post’의 페이지가되기를 바랍니다. 해당 페이지가 PHP로 작성된 경우 위에서 방금 게시 한 JSON은 다음과 같이 읽습니다.

$jsonStr = file_get_contents("php://input"); //read the HTTP body.
$json = json_decode($jsonStr);


답변

이 코드를 시도하십시오 :-

$url = 'url_to_post';

$data = array("first_name" => "First name","last_name" => "last name","email"=>"email@gmail.com","addresses" => array ("address1" => "some address" ,"city" => "city","country" => "CA", "first_name" =>  "Mother","last_name" =>  "Lastnameson","phone" => "555-1212", "province" => "ON", "zip" => "123 ABC" ) );

$data_string = json_encode(array("customer" =>$data));

$ch = curl_init($url);

curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);

curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type:application/json'));

curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

$result = curl_exec($ch);

curl_close($ch);

echo "$result";


답변

이 예제를 시도하십시오.

<?php
 $url = 'http://localhost/test/page2.php';
    $data = array("first_name" => "First name","last_name" => "last name","email"=>"email@gmail.com","addresses" => array ("address1" => "some address" ,"city" => "city","country" => "CA", "first_name" =>  "Mother","last_name" =>  "Lastnameson","phone" => "555-1212", "province" => "ON", "zip" => "123 ABC" ) );
    $ch=curl_init($url);
    $data_string = urlencode(json_encode($data));
    curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
    curl_setopt($ch, CURLOPT_POSTFIELDS, array("customer"=>$data_string));


    $result = curl_exec($ch);
    curl_close($ch);

    echo $result;
?>

page2.php 코드

<?php
$datastring = $_POST['customer'];
$data = json_decode( urldecode( $datastring));

?>


답변

이렇게 해보십시오 :

$url = 'url_to_post';
// this is only part of the data you need to sen
$customer_data = array("first_name" => "First name","last_name" => "last name","email"=>"email@gmail.com","addresses" => array ("address1" => "some address" ,"city" => "city","country" => "CA", "first_name" =>  "Mother","last_name" =>  "Lastnameson","phone" => "555-1212", "province" => "ON", "zip" => "123 ABC" ) );
// As per your API, the customer data should be structured this way
$data = array("customer" => $customer_data);
// And then encoded as a json string
$data_string = json_encode($data);
$ch=curl_init($url);

curl_setopt_array($ch, array(
    CURLOPT_POST => true,
    CURLOPT_POSTFIELDS => $data_string,
    CURLOPT_HEADER => true,
    CURLOPT_HTTPHEADER => array('Content-Type:application/json', 'Content-Length: ' . strlen($data_string)))
));

$result = curl_exec($ch);
curl_close($ch);

잊어 버린 중요한 것은 데이터를 json_encode하는 것입니다. 그러나 curl_setopt_array를 사용하여 배열을 전달하여 모든 curl 옵션을 한 번에 설정하는 것이 편리하다는 것을 알 수 있습니다.


답변