Jak zwrócić obiekt JSON z niestandardowym interfejsem API REST w Magento 2?


14

Piszę niestandardowe demo interfejsu API REST; teraz może zwracać liczby i ciągi w mojej wersji demonstracyjnej, ale chcę, aby zwrócił obiekt JSON, podobnie jak inne interfejsy API REST.

W mojej wersji demo wywołuję interfejs API Magento 2 (tj. Uzyskuję informacje o kliencie: http: //localhost/index.php/rest/V1/customers/1 ) za pomocą curl i zwraca ciąg JSON:

„{\" id \ ": 1, \" id_grupy \ ": 1, \" default_billing \ ": \" 1 \ ", \" Created_at \ ": \" 13.12.2016 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, \" address \ ": [{ \ "id \": 1, \ "ID_użytkownika \": 1, \ "region \": {\ "region_code \": \ "AR \", \ "region \": \ "Arad \", \ "region_id \ ": 279}, \" region_id \ ": 279, \" country_id \ ": \" RO \ ", \" street \ ": [\" abc \ "], \" telephone \ ": \" 111 \ ", \" kod pocztowy \ ": \"1111 \ ", \" city \ ": \" def \ ", \" firstname \ ": \" azol \ ", \" lastname \ ": \" young \ ", \" default_billing \ ": true}], \ "disable_auto_group_change \": 0} "

Odpowiedź jest ciągiem JSON, ale wszystkie klucze zawierają ukośnik. Wiem, że mogę usunąć ukośnik str_replace, ale to głupi sposób. Czy istnieje inny sposób zwrócenia obiektu JSON bez ukośników w klawiszach?

************ AKTUALIZACJA 2016.12.27 ************

Wkleiłem tutaj mój kod testowy:

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

Próby z return json_encode($result, JSON_UNESCAPED_SLASHES);?
Khoa TruongDinh

tak, próbuję,
wygeneruje

Wypróbuj inny sposób: $json_string = stripslashes($result)ireturn json_decode($json_string, true);
Khoa TruongDinh

Odpowiedzi:


1

Możemy używać json_encodez JSON_UNESCAPED_SLASHES:

json_encode($response, JSON_UNESCAPED_SLASHES);

cześć, tak, zrobiłem to w kodzie, ale nadal
mam

Próbowałeś z stripslashes()funkcją lub json_encode($str, JSON_UNESCAPED_SLASHES);?
Khoa TruongDinh

Przeczytaj moją zaktualizowaną odpowiedź.
Khoa TruongDinh

1
Spróbuj $ this -> _ response-> RepresentJson (json_encode ($ data));
Pratik

Cześć Khoa, dziękuję! Próbuję napisać kod „json_encode ($ response, JSON_UNESCAPED_SLASHES);” i stripslashes ("hi i \" azol ") ;, Nadal ma slash .......
azol.young

1

Utwórz ws.php w katalogu głównym magento 2 i wklej poniższy kod w pliku:

<?php
    use Magento\Framework\App\Bootstrap;
    require __DIR__ . '/app/bootstrap.php';
    $params = $_SERVER;
    $bootstrap = Bootstrap::create(BP, $params);


    function sign($method, $url, $data, $consumerSecret, $tokenSecret)
    {
        $url = urlEncodeAsZend($url);
        $data = urlEncodeAsZend(http_build_query($data, '', '&'));
        $data = implode('&', [$method, $url, $data]);
        $secret = implode('&', [$consumerSecret, $tokenSecret]);
        return base64_encode(hash_hmac('sha1', $data, $secret, true));
    }

    function urlEncodeAsZend($value)
    {
        $encoded = rawurlencode($value);
        $encoded = str_replace('%7E', '~', $encoded);
        return $encoded;
    }

    // REPLACE WITH YOUR ACTUAL DATA OBTAINED WHILE CREATING NEW INTEGRATION
    $consumerKey = 'YOUR_CONSUMER_KEY';
    $consumerSecret = 'YOUR_CONSUMER_SECRET';
    $accessToken = 'YOUR_ACCESS_TOKEN';
    $accessTokenSecret = 'YOUR_ACCESS_TOKEN_SECRET';

    $method = 'GET';
    $url = 'http://localhost/magento2/rest/V1/customers/1';

//
$data = [
    'oauth_consumer_key' => $consumerKey,
    'oauth_nonce' => md5(uniqid(rand(), true)),
    'oauth_signature_method' => 'HMAC-SHA1',
    'oauth_timestamp' => time(),
    'oauth_token' => $accessToken,
    'oauth_version' => '1.0',
];

$data['oauth_signature'] = sign($method, $url, $data, $consumerSecret, $accessTokenSecret);

$curl = curl_init();

curl_setopt_array($curl, [
    CURLOPT_RETURNTRANSFER => 1,
    CURLOPT_URL => $url,
    CURLOPT_HTTPHEADER => [
        'Authorization: OAuth ' . http_build_query($data, '', ',')
    ]
]);

$result = curl_exec($curl);
curl_close($curl);

echo $result;

$response = \Zend_Json::decode($result);
echo "<pre>";
print_r($response);
echo "</pre>";

Następnie uruchom ten plik za pomocą linku takiego jak http: //localhost/magento2/ws.php w przeglądarce i sprawdź dane wyjściowe.


1

Próbowałem użyć następującego skryptu, aby sprawdzić, czy otrzymuję ukośniki w tej samej odpowiedzi API:

<?php
// create a new cURL resource
$ch = curl_init();

// set URL and other appropriate options
curl_setopt($ch, CURLOPT_URL, "http://www.example.test/rest/all/V1/customers/12408");
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_HTTPHEADER, ['Authorization: Bearer oc34ouc8lvyvxcbn16llx7dfrjygdoh2', 'Accept: application/json']);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

// grab URL and pass it to the browser
$result = curl_exec($ch);

var_dump($result);

// close cURL resource, and free up system resources
curl_close($ch);

Który powoduje tę odpowiedź (obciętą przez funkcję var_dump PHP):

$ php -f apitest2.php 
/var/www/html/dfl/htdocs/apitest2.php:14:
string(1120) "{"id":12408,"group_id":13,"default_billing":"544","default_shipping":"544","created_at":"2018-05-24 08:32:59","updated_at":"2018-05-24 08:32:59","created_in":"Default Store View","email":"...

Jak widać, w mojej odpowiedzi nie ma żadnych ukośników.

Proponuję więc dwie opcje:

  • Sprawdź, dlaczego twoja konfiguracja cURL zwraca odpowiedź ukośnikami. Być może ma to coś wspólnego z używaniem Oauth? Wygląda na to, że coś pobiera surową odpowiedź z cURL, a następnie próbuje coś zrobić (na przykład wypisać to) i w trakcie dodawania ukośników
  • Wytrwaj w znajdowaniu sposobu usuwania ukośników za pomocą str_replacelub podobnego.

Gdy otrzymasz odpowiedź bez ukośników, możesz użyć następującego wiersza, aby zmusić PHP do konwersji ciągu znaków na obiekt JSON:

$object = json_decode( $output, false, 512, JSON_FORCE_OBJECT);
Korzystając z naszej strony potwierdzasz, że przeczytałeś(-aś) i rozumiesz nasze zasady używania plików cookie i zasady ochrony prywatności.
Licensed under cc by-sa 3.0 with attribution required.