Jump to content

Disabilitare (o nascondere) messaggi HTTP relativi a PSWebServiceLibrary.php


ales496

Recommended Posts

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?

ps-messages.png

Link to comment
Share on other sites

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

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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...