PHP cURLでJSONデータをPOSTする方法


132

これが私のコードです、

$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を実装したい


2
あなたが変換欠落していない$data$data_string使用してjson_encode()?このコード行が表示されない...
shadyyx

申し訳ありませんが、ここには書きませんでしたが、私のコードではcode$ data_string = json_encode($ data);と書きました。codeコメントでコードを書く方法?コメントでは改行を書くことができないので、コードを書く方法は?
user1463076

回答:


193

jsonを間違ってPOSTしています-たとえそれが正しいとしても、使用してテストすることはできませんprint_r($_POST)理由はこちらをお読みください)。代わりに、2番目のページでfile_get_contents("php://input")、POSTされたjsonを含むを使用して受信リクエストを取得できます。受信したデータをより読みやすい形式で表示するには、次のことを試してください。

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

コードではを示してContent-Type:application/jsonいますが、すべてのPOSTデータをjsonエンコードしているわけではなく、「顧客」の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>";

補足:Shopify APIと直接やり取りするのではなく、サードパーティのライブラリを使用するほうがよい場合があります。


1
ハァッ!$ _POST経由でデータを受信しなかった理由について、私は苦労していました。問題は、あなたが言ったようにphp:// inputを使用しなければならないことでした。ありがとう。
YOMorales 2015年

POSTリクエストであることを明示的に指定する必要はありませんか?CURLOPT_POSTFIELDSが設定されていることで知られていますか?
Srneczek

先週私が一週間ずっと探していたとき、この答えはどこにありましたか?今、私は自分自身を理解しなければならなかった後、それを見つけることができます!
pythonian29033 2016

補足:JSONを送信し、JSONを応答として期待する場合、一部のAPIでは応答タイプも設定する必要がありますcurl_setopt($curl, CURLOPT_HTTPHEADER, array('Content-Type:application/json', 'Accept:application/json'));(そうでない場合、JSONを送信することもできますが、XMLを応答として取得します)。
pixelbrackets 2018年

2
あなたはその日を救った
Nisal Edu

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

どうしてそう思いますか?彼がデータを「顧客」フィールドに入れる場合、彼は理由のためにそうしているに違いありませんか?
お好み焼き

はい、ありがとう、その部分を逃しました。しかし、彼(IMO)はそれを間違っています。答えを更新します。
UltraInstinct 2012年

上記のソリューションはどれも、phpファイルでjsonデータを取得するために機能しません:(
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で確認してください。サーバーがurlencoded-jsonではなくJSONで予期する本文。私の答えを確認していない、使用する必要array(..)`CURLOPT_POSTFIELDS中
UltraInstinct

はい、私が言ったように、彼はそれを間違って送っています。array(..)CURLOPT_POSTFIELDS`にを渡すと、JSONもURLエンコードされます。
UltraInstinct 2012年

とにかく、私はさまざまなコードで何度も試しましたが、jsonで行うことができませんでしたが、xmlで成功しました。
user1463076 2012年
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.