Question

I'm going to use Prestashop 1.5.4 web-service to get all products with their attributes such as description, name and etc. My problem is whenever I call web-service it returns to me only the products Ids. How can I get attributes too?

Edited :

code :

class ShopApi
{
    public $client;

    public function __construct()
    {
        $this->getClient();
    }

    public function getClient()
    {
        try {
            // creating web service access
            $this->client = new PrestaShopWebservice('http://wikibazaar.ir/', 'A38L095W0RHRXE8PM9CM01CZW7KIU4PX', false);
        } catch (PrestaShopWebserviceException $ex) {
            // Shows a message related to the error
            echo 'error: <br />' . $ex->getMessage();
        }
    }
}

class ProductApi extends ShopApi
{
    public function findAll()
    {
        $products = array();
        /// The key-value array
        $opt['resource'] = 'products';
        $opt['display'] = '[description]';
        $opt['limit'] = 1;
        $xml = $this->client->get($opt);
        $resources = $xml->products->children();
        foreach ($resources as $resource)
            $products[] = $resource->attributes();
        return $products;
    }
}

EDIT :
I've found that the response from webservice is ok. but there is a problem during parsing xml with simplexml_load_string() function. any idea? it's $product var_dump :

SimpleXMLElement#1 ( [products] => SimpleXMLElement#2 ( [product] => SimpleXMLElement#3 ( [description] => SimpleXMLElement#4 ( [language] => SimpleXMLElement#5 ( [@attributes] => array ( 'id' => '1' ) ) ) ) ) )
Was it helpful?

Solution

I think that $opt['display'] = 'full'; would do the job You can also select only some specific attribute e.g.

$opt['display'] = '[id,name]';

Take a look at the official documentation, you might find it interesting

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top