要使用Webservice从Prestashop检索数据,我们使用:
$webService = new PrestaShopWebservice($prestashopstoreurl, $prestashopApiKey, true);
$opt['resource'] = 'orders';
$opt['display']='full';
$xml=$webService->get($opt);
但是'显示' => '全'过滤器未应用于产品和销售订单资源,但适用于客户资源。