I use the Magento API to get product information from another server.
$soap = new SoapClient('http://example.com/api/soap/?wsdl');
$sessionId = $soap->login('xxxxxxx', 'xxxxxxxx');
$productInfo = $soap->call($sessionId, 'product.info','123');
The above code is suitable for obtaining product information, but I need to collect product reviews and rating information for a specific product, and I do not get such a method in the Magento API list http://www.magentocommerce.com/support/magento_core_api to get it .
So can you help me? How can I get a product overview and rating ie, name, name, text, rating and date using only the Magento API.
Thank.
Preity.
source
share