0

我正在使用 php,我使用 contentType “本地产品”的内容 API 创建了数据馈送。

$apiUrl = "https://www.googleapis.com/content/v2.1/[Merchant_Id]/datafeeds?access_token=".[API_token];
$request = array(
   "contentType"=>"local products",
       "fileName"=>"local_datafeedfile",
       "name"=>"Local Datafeed",
       "targets"=>array(
          array(
           "country"=>"IN",
           "language"=>"EN"
          )
       )
   );

现在我需要将产品添加到此数据馈送中。我正在使用这个 api 添加产品

https://www.googleapis.com/content/v2.1/[Merchant_Id]/products?feedId=[Feed_id]&access_token=".[API_token];

问题是始终显示[feedId] 的 [Feed_id] 无效的 feed id: xxxxxxxx 我使用与从上述请求添加本地产品数据馈送时生成的 feed_id 相同的 id

4

0 回答 0