我使用谷歌购物Api从过去一年它正常工作。但现在我想在其中添加新属性,例如# Configure matplotlib for interactive use with the default matplotlib backend.
c.IPKernelApp.matplotlib = 'inline'
。为此,我使用了CustomLabel5
方法并传递了三个属性setCustomAttributes()
,name
,type
。
但它正在显示错误400无效属性值。以下是我的代码,请检查并提出正确答案。
value
请回答。
答案 0 :(得分:0)
这里相当简单。
setCustomAttributes
需要一组Google_Service_ShoppingContent_ProductCustomAttribute
个实例。
您需要的是:
$attributesArray = array($data);
$product->setCustomAttributes($attributesArray);