2016-10-20 106 views
0

您好,我需要所有產品的c#代碼中的所有產品收集信息。目前,有3個產品我有加,我使用Magento的SOAP API V1和Visual Studio 2015年C# - Magento:獲得所有產品

我曾嘗試

var allprod = mservice.catalogProductAttributeList(mlogin, 1); 

其中mlogin是會話1 SETID

+1

你的問題是什麼?你的代碼有什麼問題?你應該閱讀[問]。 – Enigmativity

回答

1

catalogProductEntity [] resultArray = mservice.catalogProductList(mlogin,myfilter,null);

的foreach(在resultArray VAR PRODID) { catalogProductReturnEntity ResultAllProducts = mservice.catalogProductInfo(mlogin,prodid.product_id,NULL,NULL,NULL);

}

在ResultAllProducts我們可以得到所有的項目一個接一個。

像ResultAllProducts.name,ResultAllProducts.price,ResultAllProducts.product_id等;