यहाँ मेरा कोड है,
$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 लागू करना चाहता हूं
code
$ data_string = json_encode ($ data) लिखा है ; code
और टिप्पणियों में कोड कैसे लिखें? टिप्पणियों में मैं लाइन ब्रेक नहीं लिख सकता और इसलिए कोड कैसे लिखूं?
$data
का$data_string
उपयोग करने के लिए परिवर्तित याद नहीं कर रहे हैंjson_encode()
??? कोड की यह लाइन न देखें ...