วิธีการโพสต์ข้อมูล JSON ด้วย PHP cURL


134

นี่คือรหัสของฉัน

$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 ( ) 

ดังนั้นฉันจึงไม่ได้รับข้อมูลที่เหมาะสมแม้จะอยู่ที่เซิร์ฟเวอร์ของฉันเอง แต่ก็เป็นอาร์เรย์ว่างเปล่า ฉันต้องการใช้ REST โดยใช้ json ที่http://docs.shopify.com/api/customer#create


2
คุณไม่พลาดการเปลี่ยน$dataมา$data_stringใช้json_encode()??? ไม่เห็นรหัสบรรทัดนี้ ...
Shadyyx

ขออภัยฉันไม่ได้เขียนที่นี่ แต่ในรหัสของฉันฉันเขียนcode$ data_string = json_encode ($ data); codeและจะเขียนโค้ดในความคิดเห็นได้อย่างไรในความคิดเห็นฉันเขียนตัวแบ่งบรรทัดไม่ได้แล้วจะเขียนโค้ดได้อย่างไร
user1463076

คำตอบ:


194

คุณกำลังโพสต์ json ไม่ถูกต้อง - แต่แม้ว่าจะถูกต้องคุณจะไม่สามารถทดสอบโดยใช้print_r($_POST)( อ่านสาเหตุที่นี่ ) ในหน้าที่สองของคุณคุณสามารถจับคำร้องที่เข้ามาได้โดยใช้file_get_contents("php://input")ซึ่งจะมี Json ที่โพสต์ไว้ หากต้องการดูข้อมูลที่ได้รับในรูปแบบที่อ่านได้ง่ายขึ้นให้ลองทำดังนี้:

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

ในรหัสของคุณคุณกำลังระบุContent-Type:application/jsonแต่คุณไม่ได้เข้ารหัส json ทั้งหมดของข้อมูล POST - เฉพาะค่าของช่อง POST "ลูกค้า" เท่านั้น ให้ทำสิ่งนี้แทน:

$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>";

Sidenote: คุณอาจได้รับประโยชน์จากการใช้ไลบรารีของบุคคลที่สามแทนที่จะเชื่อมต่อกับ Shopify API โดยตรงด้วยตัวคุณเอง


1
ฮะ! ฉันกำลังดิ้นรนว่าทำไมฉันถึงไม่ได้รับข้อมูลผ่าน $ _POST ปัญหาคือฉันต้องใช้ php: // input เหมือนที่คุณพูด ขอบคุณ
YOMorales

ดังนั้นคุณไม่จำเป็นต้องระบุอย่างชัดเจนว่าเป็นคำขอ POST หรือไม่? เป็นที่รู้จักเนื่องจากมีการตั้งค่า CURLOPT_POSTFIELDS?
Srneczek

คำตอบนี้อยู่ที่ไหนเมื่อฉันมองหามันตลอดสัปดาห์ที่แล้ว ตอนนี้ฉันพบวิธีแล้วหลังจากที่ฉันต้องคิดออก!
pythonian29033

Sidenote: หากคุณส่ง JSON และคาดว่า JSON เป็นคำตอบ API บางตัวจำเป็นต้องตั้งค่าประเภทการตอบกลับด้วยcurl_setopt($curl, CURLOPT_HTTPHEADER, array('Content-Type:application/json', 'Accept:application/json'));(มิฉะนั้นคุณอาจส่ง JSON แต่รับ XML เป็นคำตอบ)
pixelbrackets

2
คุณบันทึกวัน
Nisal Edu

30
$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);

รหัสนี้ใช้ได้ผลสำหรับฉัน คุณสามารถลอง...


13

แทนที่

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);

ทำไมคุณถึงคิดเช่นนั้น? หากเขาใส่ข้อมูลลงในฟิลด์ 'ลูกค้า' เขาจะต้องทำเช่นนั้นด้วยเหตุผลไม่ใช่หรือ?
Okonomiyaki3000

ใช่ขอบคุณฉันพลาดส่วนนั้นไป แต่เขา IMO กำลังทำผิด ฉันจะอัปเดตคำตอบของฉันด้วย
UltraInstinct

วิธีแก้ปัญหาข้างต้นไม่ทำงานเพื่อรับข้อมูล json ในไฟล์ php :(
Gohel Kiran

7

โปรดลองใช้รหัสนี้: -

$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";

3

ลองดูตัวอย่างนี้

<?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));

?>

1

ลองทำดังนี้

$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 ทั้งหมดพร้อมกันโดยส่งอาร์เรย์


-1 ตรวจสอบ API ที่นี่: api.shopify.com/customer.html#create เนื้อหาที่เซิร์ฟเวอร์ต้องการใน JSON ไม่ใช่ urlencoded-json ตรวจสอบคำตอบของฉันไม่จำเป็นต้องใช้array(..)ใน `` CURLOPT_POSTFIELDS
UltraInstinct

ใช่อย่างที่บอกว่าเขาส่งผิด การส่งผ่านarray(..)ไปยัง CURLOPT_POSTFIELDS` จะเป็นการ urlencode JSON ด้วย
UltraInstinct

อย่างไรก็ตามฉันพยายามหลายครั้งด้วยรหัสที่แตกต่างกัน แต่ฉันไม่สามารถทำได้ใน json ตอนนี้ฉันทำสำเร็จใน xml
user1463076
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.