如何使用php在Google购物内容api中添加自定义属性?

时间:2015-07-17 10:09:42

标签: php magento google-shopping-api google-shopping

我使用谷歌购物Api从过去一年它正常工作。但现在我想在其中添加新属性,例如# Configure matplotlib for interactive use with the default matplotlib backend. c.IPKernelApp.matplotlib = 'inline' 。为此,我使用了CustomLabel5方法并传递了三个属性setCustomAttributes()nametype但它正在显示错误400无效属性值。以下是我的代码,请检查并提出正确答案。

value

请回答。

1 个答案:

答案 0 :(得分:0)

这里相当简单。

setCustomAttributes需要一组Google_Service_ShoppingContent_ProductCustomAttribute个实例。

您需要的是:

$attributesArray = array($data);
$product->setCustomAttributes($attributesArray);