Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i'm trying to get the latest products (max 20) from magento API using SOAP, i only need the images and the product link, as they are being displayed on another site.

i'm using the below code to do that:

$client = new SoapClient('http://magentohost/api/soap/?wsdl');

$session = $client->login('username', 'password');

$apicalls = array();
$i = 0;
$ii = 0;

$filters = array('sku' => array('neq'=>''));

$products = $client->call($session, 'catalog_product.list',array($filters));

foreach ($products as $product){
    $apicalls[$i] = array('catalog_product_attribute_media.list', $product['product_id']);
    $i++;
    $apicalls[$i] = array('catalog_product.info', $product['product_id']);
    $i++;
}

$productinfo = $client->multiCall($session, $apicalls);

however the above code is not displaying the images, any ideas??

Thanks for the help

share|improve this question
What do you mean by "displaying" exactly? What results are you getting? – Pekka 웃 Mar 23 '12 at 18:59
displaying as in get an array of images with the respective product link. for a sample output please go here pastebin.com/MetxheuP – user1288902 Mar 24 '12 at 16:18
3  
Your SOAP Fault is "access denied". Doesn't look like you're using the right credentials. Are you sure you made an API user and not a normal user? Did you make a roll that has priv to do these things? – Jared Kipe Apr 23 at 4:21

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.