我可以在Magento文档中看到,可以使用可选的商店视图参数调用categories.tree,但我无法使其工作。
我正在做以下事情:
$store = 'gl'; // This is my store view code
return self::$client->call( self::$session, 'catalog_category.tree' , $store );
但是我收到了SOAP错误。怎么showld我这样做?
由于
答案 0 :(得分:0)
$client->call(self::$session, 'catalog_category.tree' , null, $store );
你没有传递第二个参数,(as per documentation)对应于parentId,我认为你想忽略它。
SOAPv2 API的等效调用是:
$client->catalogCategoryTree(self::$session, null, $store);