我正在使用Google的內容購物API,這一切都很順利,此code。PHP - 內容購物Api - 找不到項目
但是,當我試圖通過以下方法從Merchant Center刪除產品時,產品已成功從列表中刪除,但仍返回「找不到項目」錯誤。
這是代碼:
public function deleteProduct($offerId) {
$productId = $this->buildProductId($offerId);
// The response for a successful delete is empty
$this->service->products->delete($this->merchantId, $productId);
}
,這是它返回錯誤。
Google_Service_Exception
{
"error": {
"errors": [
{
"domain": "global",
"reason": "notFound",
"message": "item not found"
}
],
"code": 404,
"message": "item not found"
}
}
我搜索了很多,甚至沒有什麼比Google文檔中的常見錯誤。 – kishor10d