Estou escrevendo uma demonstração personalizada da API REST; agora ele pode retornar números e seqüências de caracteres na minha demonstração, mas quero que ele retorne um objeto JSON como outras APIs REST.
Na minha demonstração, chamo a API do Magento 2 (ou seja, obter informações do cliente: http: //localhost/index.php/rest/V1/customers/1 ) com curl, e ela retorna uma string JSON:
"{\" 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 \": \ "[email protected] \ ", \" firstname \ ": \" azol \ ", \" lastname \ ": \" young \ ", \" store_id \ ": 1, \" website_id \ ": 1, \" address \ ": [{ \ "id \": 1, \ "customer_id \": 1, \ "region \": {\ "region_code \": \ "AR \", \ "region \": \ "Arad \", \ "region_id \ ": 279}, \" region_id \ ": 279, \" country_id \ ": \" RO \ ", \" street \ ": [\" abc \ "], \" telephone \ ": \" 111 \ ", \" código postal \ ": \"1111 \ ", \" city \ ": \" def \ ", \" firstname \ ": \" azol \ ", \" lastname \ ": \" young \ ", \" default_billing \ ": true}], \ "disable_auto_group_change \": 0} "
A resposta é uma sequência JSON, mas todas as chaves possuem uma barra dentro. Eu sei que posso remover a barra str_replace
, mas é uma maneira estúpida. Existe alguma outra maneira de retornar um objeto JSON sem barras nas chaves?
************ ATUALIZAÇÃO 2016.12.27 ************
Eu colei meu código de teste aqui:
$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\":\"[email protected]\",\"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;
return json_encode($result, JSON_UNESCAPED_SLASHES);
?$json_string = stripslashes($result)
ereturn json_decode($json_string, true);
Respostas:
Podemos usar
json_encode
comJSON_UNESCAPED_SLASHES
:fonte
stripslashes()
função oujson_encode($str, JSON_UNESCAPED_SLASHES);
?Crie o ws.php no diretório raiz do magento 2 e cole o código abaixo no arquivo:
Depois disso, execute este arquivo usando um link como http: //localhost/magento2/ws.php no navegador e verifique a saída.
fonte
Tentei usar o seguinte script para testar se recebo barras na mesma resposta da API:
O que produz essa resposta (truncada pela função var_dump do PHP):
Como você pode ver, não há barras na minha resposta.
Então, sugiro que você tenha duas opções:
str_replace
ou similar.Depois de obter sua resposta sem barras, você pode usar a seguinte linha para forçar o PHP a converter a string em um objeto JSON:
fonte