JoseLoz Posted May 10, 2023 Share Posted May 10, 2023 Buenos días, estoy teniendo un problema con el webService de PrestaShop tengo intento acceder a miweb/api/images/products/3/ desde el navegador y obtengo el xml. Pero al hacerlo en php en las imagenes no me funciona y con otras peticiones si. Estoy usando la librería PrestaShop-webservice-lib try { $webService2 = new PrestaShopWebservice("miweb/api/taxes/" . $id, "CLAVE", false); $xml_taxes = $webService2->get(array('resource' => 'tax')); } catch (Exception $ex) { echo "Error en taxes" . $ex->getMessage(); }(Me funciona) try { $webService6 = new PrestaShopWebservice("miweb/api/images/products/3", "CLAVE", false); $xml_image = $webService6->get(array('resource' => 'image')); } catch (Exception $ex) { $xml_image=$ex->getMessage(); } Me salta la excepción: This call to PrestaShop Web Services failed and returned an HTTP status of 400. That means: Bad Request - (Code 57): This image id does not exist Y el xml de la url que uso es: <prestashop xmlns:xlink="http://www.w3.org/1999/xlink"> <image id="3"> <declination id="1" xlink:href="https://ps.areea.dev/api/images/products/3/1"/> </image> </prestashop> Link to comment Share on other sites More sharing options...
ExpertoPrestaShop Posted May 10, 2023 Share Posted May 10, 2023 Hola: Parece que tienes varios errores: - Al instanciar la clase PrestaShopWebservice no se usa la URL completa, sino la URL base del webservice de la tienda. - Para obtener una imagen en especifico debes indicar el recurso (ya lo haces al indicar 'image' como parámetro) pero también el id del recurso (el cual pasas en la URL incorrectamente) Te dejo un ejemplo claro de como hacerlo. Te recomiendas te leas TODA la documentación oficial al respecto: https://devdocs.prestashop-project.org/8/webservice/tutorials/prestashop-webservice-lib/retrieve-resource/#using-prestashopwebserviceget 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