我重寫了Magento Core(M1.9)的Api模型,並且想測試它的工作原理。它也返回可能的記錄,我想在我的測試中設置條件,如Sql「order BY Desc | Asc」和「LIMIT」。但我不知道我應該在哪裏提到的條件。 這裏是我的測試代碼:SOAP API中的ASC和DESC條件magento 1.9
$username = 'testapi';
$apikey= 'password';
$client = new Zend_XMLRPC_Client('https://www.magentohost.com/index.php/api/xmlrpc');
$session = $client->call('login', array($username, $apikey));
$filters = array(
array(
'category_id' => 163,
'internal_rating' => 6
//array('product_id'=>'Order by ASC')
));
try {
$message = $client->call('call', array($session, 'catalog_product.list', $filters));
var_dump($message);
} catch (Exception $fault) {
echo $fault->getMessage();
}
我可以理解任何意見
謝謝你Aleks。我之前嘗試過這種方式,但這並不成功。 –