Prestashop webservice PSWebServiceLibrary返回空订单详细信息

时间:2014-04-04 09:49:39

标签: php web-services prestashop prestashop-1.6

要获得特定的商店订单,我在prestashop 1.6上使用来自LINK的PSWebServiceLibrary.php。

这是我的代码

require_once 'PSWebServiceLibrary.php';
$opt['id'] = 1; // Looking for details for order 1 
$opt['resource'] = 'orders';

// Call
$webService = new PrestaShopWebservice('http://myprestashop_shop_url.com', '*****', true);
$xml = $webService->get($opt);

$resources = $xml->children()->children();

echo '<pre>';
    print_r($resources);
echo '</pre>';


RETURN HTTP BODY has returned all the values I am looking for as shown on pic1.

pic1

但$资源返回空值,如图2所示。 pic2

注意:在高级参数/ Web服务中,我启用了所有包括order_details和order_histories。

1 个答案:

答案 0 :(得分:1)

$resources不为空,它包含SimpleXMLElement对象。试试echo $resources->id