驗證商品目錄

為店面商品目錄廣告設定 Merchant Center 帳戶,並新增適當的產品和商品目錄資料後,Google 會透過商品目錄驗證程序,檢查所提供產品和商品目錄資訊的準確性。開始新手上路流程時,您應設定商品目錄驗證聯絡人,這樣當您準備好申請商品目錄驗證時就會進行驗證 (在完成本指南中的其他所有步驟之後)。

新增商品目錄驗證聯絡人

如要新增商品目錄驗證程序的聯絡資訊,請使用 liasettings.setinventoryverificationcontact 方法:

POST https://shoppingcontent.googleapis.com/content/v2.1/12345/liasettings/67890/setinventoryverificationcontact?contactEmail=invcheck@example.com&contactName=Inventory%20Manager&country=US&language=en

就像「關於」和「ODO」網頁網址一樣,您可以呼叫 liasettings.get 方法,檢查聯絡人是否已驗證:

GET https://shoppingcontent.googleapis.com/content/v2.1/12345/liasettings/67890

Response:
200 OK
{
  "kind": "content#liaSettings",
  "accountId" : 67890,
  "countrySettings" : [{
    "country" : "US",
    "inventory" : {
      "inventoryVerificationContactName" : "Inventory Manager",
      "inventoryVerificationContactEmail" : "invcheck@example.com",
      "inventoryVerificationContactStatus" : "pending"
    }
  }]
}

申請商品目錄驗證

countrySettings[].inventory.status 以外的所有狀態欄位都列為 active 後,您就可以申請初步商品目錄驗證檢查。如要延長,請呼叫 liasettings.requestinventoryverification 方法:

POST https://shoppingcontent.googleapis.com/content/v2.1/12345/liasettings/67890/requestinventoryverification/US

您可以擷取帳戶的店面商品目錄廣告設定,藉此查看驗證程序的狀態:

GET https://shoppingcontent.googleapis.com/content/v2.1/12345/liasettings/67890

Response:
200 OK
{
  "kind": "content#liaSettings",
  "accountId" : 67890,
  "countrySettings" : [{
    "country" : "US",
    "inventory": {
      "inventoryVerificationContactName" : "Inventory Manager",
      "inventoryVerificationContactEmail" : "invcheck@example.com",
      "inventoryVerificationContactStatus" : "active",
      "status" : "pending"
    }
  }]
}

status 欄位的值變更為 active 時,恭喜您,您已經完成店面商品目錄廣告新手上路流程!