我正在使用Magento API从其他服务器获取产品信息,即
$soap = new SoapClient('http://example.com/api/soap/?wsdl');
$sessionId = $soap->login('xxxxxxx', 'xxxxxxxx');
$productInfo = $soap->call($sessionId, 'product.info','123');
以上代码对我来说可以获取产品信息,但我必须收集特定产品的产品评论和评级信息,而我在Magento API列表http://www.magentocommerce.com/support/magento_core_api中没有得到这样的方法来获取它。
你能帮帮我吗?如何使用Magento API获取产品评论和评级信息,即ID,名称,文本,评级和日期。感谢。
Preeti。