ales496 Posted July 11, 2023 Share Posted July 11, 2023 Buongiorno a tutti, lavorando con la libreria PSWebServiceLibrary.php, in seguito ad una richiesta al webservice di tipo get, nella pagina web vengono stampati messaggi relativi a HTTP REQUEST HEADER HTTP RESPONSE HEADER RETURN HTTP BODY Come posso nascondere la stampa di tali messaggi? Link to comment Share on other sites More sharing options...
ziobudda Posted July 11, 2023 Share Posted July 11, 2023 Ciao, usando i WebService non farti spedire XML ma il JSON. M. Link to comment Share on other sites More sharing options...
ales496 Posted July 11, 2023 Author Share Posted July 11, 2023 2 hours ago, ziobudda said: Ciao, usando i WebService non farti spedire XML ma il JSON. M. Intanto ti ringrazio per la risposta. Poiché tutta la documentazione di Prestashop utilizza XML, sapresti cortesemente tradurmi una get semplice come quella che segue? $xml = $webService->get([ 'resource' => 'products', 'id' => $id_prod, ]); Link to comment Share on other sites More sharing options...
ziobudda Posted July 11, 2023 Share Posted July 11, 2023 Ciao, devi solo dirgli che vuoi il risultato in JSON tramite l'uso di output_format=JSON https://devdocs.prestashop-project.org/1.7/webservice/getting-started/#using-json-instead-of-xml M. Link to comment Share on other sites More sharing options...
ales496 Posted July 12, 2023 Author Share Posted July 12, 2023 18 hours ago, ziobudda said: Ciao, devi solo dirgli che vuoi il risultato in JSON tramite l'uso di output_format=JSON https://devdocs.prestashop-project.org/1.7/webservice/getting-started/#using-json-instead-of-xml M. Perdonami, ma nell'ottica di strutturare le richieste php come riporto di seguito, dove va apposta la specifica dell'output_format? $webService = new PrestaShopWebservice(URL_STORE, PS_API_KEY, DEBUG_MODE); $xml = $webService->get([ 'resource' => 'products', 'id' => $id_prod, 'io_format' => 'JSON', 'Output-Format' => 'JSON', ]); Link to comment Share on other sites More sharing options...
ziobudda Posted July 12, 2023 Share Posted July 12, 2023 (edited) Ciao, non ho idea di cosa sia PrestashopWebService. M. Edited July 12, 2023 by ziobudda (see edit history) Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now