我正在尝试使用Magento SOAP v1 API将产品添加到Magento的购物车中,但我正在获取
Please specify the product required option(s).
错误消息。
调用如下:
$productArray[] = array(
"product_id"=>"24",
"qty"=>1
);
$resultCartProductAdd = $client->call($session, "cart_product.add", array($shoppingCartId, $productArray));
我无法弄清楚如何找出将产品添加到购物车所需的所有选项。任何帮助将不胜感激。