मैं एक कस्टम REST API डेमो लिख रहा हूँ; अब यह मेरे डेमो में संख्याओं और तारों को वापस कर सकता है, लेकिन मैं चाहता हूं कि यह अन्य REST API की तरह JSON ऑब्जेक्ट लौटाए।
मेरे डेमो में, मैं कर्ल के साथ Magento 2 एपीआई (यानी ग्राहक जानकारी प्राप्त करता हूं: http: //localhost/index.php/rest/V1/customers/1 ), और यह JSON स्ट्रिंग लौटाता है:
"{\" id \ ": 1, \" group_id \ ": 1, \" default_billing \ ": \" 1 \ ", \" create_at \ ": \" 2016-12-13 14: 57: 30 \ " , \ "अद्यतन_त \": \ "2016-12-13 15:20:19 \", \ "बनाया_िन \": \ "डिफ़ॉल्ट स्टोर दृश्य \", \ "ईमेल \": \ "75358050@qq.com \" ", \" firstname \ ": \" azol \ ", \" उपनाम \ ": \" युवा \ ", \" store_id \ ": 1, \" website_id \ ": 1, \" के पते \ ": [{ \ "आईडी \": 1, \ "CUSTOMER_ID \": 1, \ "क्षेत्र \": {\ "REGION_CODE \": \ "एआर \", \ "क्षेत्र \": \ "अरद \", \ "region_id \ ": 279}, \" region_id \ ": 279, \" country_id \ ": \" आरओ \ ", \" सड़क \ ": [\" एबीसी \ "], \" टेलीफोन \ ": \" 111 \ ", \" पोस्टकोड \ ": \"1111 \ ", \" शहर \ ": \" डीईएफ़ \ ", \" firstname \ ": \" azol \ ", \" उपनाम \ ": \" युवा \ ", \" default_billing \ ": सच}], \ "disable_auto_group_change \": 0} "
प्रतिक्रिया एक JSON स्ट्रिंग है, लेकिन सभी कुंजियों में एक स्लैश है। मुझे पता है कि मैं स्लैश को हटा सकता हूं str_replace
, लेकिन यह एक बेवकूफ तरीका है। क्या चाबियों के बिना JSON ऑब्जेक्ट को वापस करने का कोई अन्य तरीका है?
************ अद्यतन 2016.12.27 ************
मैंने अपना टेस्ट कोड यहाँ पेस्ट किया:
$method = 'GET';
$url = 'http://localhost/index.php/rest/V1/customers/1';
$data = [
'oauth_consumer_key' => $this::consumerKey,
'oauth_nonce' => md5(uniqid(rand(), true)),
'oauth_signature_method' => 'HMAC-SHA1',
'oauth_timestamp' => time(),
'oauth_token' => $this::accessToken,
'oauth_version' => '1.0',
];
$data['oauth_signature'] = $this->sign($method, $url, $data, $this::consumerSecret, $this::accessTokenSecret);
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_RETURNTRANSFER => 1,
CURLOPT_URL => $url,
CURLOPT_HTTPHEADER => [
'Authorization: OAuth ' . http_build_query($data, '', ','),
'Content-Type: application/json'
],
]);
$result = curl_exec($curl);
curl_close($curl);
// this code has slash still
//return stripslashes("hi i\" azol");
// has slashes still
//return stripcslashes("{\"id\":1,\"group_id\":1,\"default_billing\":\"1\",\"created_at\":\"2016-12-13 14:57:30\",\"updated_at\":\"2016-12-13 15:20:19\",\"created_in\":\"Default Store View\",\"email\":\"75358050@qq.com\",\"firstname\":\"azol\",\"lastname\":\"young\",\"store_id\":1,\"website_id\":1,\"addresses\":[{\"id\":1,\"customer_id\":1,\"region\":{\"region_code\":\"AR\",\"region\":\"Arad\",\"region_id\":279},\"region_id\":279,\"country_id\":\"RO\",\"street\":[\"abc\"],\"telephone\":\"111\",\"postcode\":\"1111\",\"city\":\"def\",\"firstname\":\"azol\",\"lastname\":\"young\",\"default_billing\":true}],\"disable_auto_group_change\":0}");
// has slashes still
//return json_encode(json_decode($result), JSON_UNESCAPED_SLASHES);
// this code will throw and expcetion:
// Undefined property: *****\*****\Model\Mycustom::$_response
//return $this->_response->representJson(json_encode($data));
return $result;
$json_string = stripslashes($result)
औरreturn json_decode($json_string, true);
return json_encode($result, JSON_UNESCAPED_SLASHES);
?