如要管理店面商品目錄廣告的相關設定,請使用
liasettings
服務。
呼叫 liasettings.update
以指定要放送店面商品目錄廣告的國家/地區。範例如下:
PUT https://shoppingcontent.googleapis.com/content/v2.1/12345/liasettings/67890
{
"accountId" : 67890,
"countrySettings" : [{
"country" : "US"
}]
}
「簡介」頁面
如果您在奧地利、德國或瑞士放送廣告,則必須一併提交簡介頁面。例如,您可以提交下列資訊,在美國和德國提供服務:
PUT https://shoppingcontent.googleapis.com/content/v2.1/12345/liasettings/67890
{
"accountId" : 67890,
"countrySettings" : [{
"country" : "US"
},
{
"country" : "DE",
"about" : {
"url" : "https://www.example.com/de/about"
}
}]
}
您必須先驗證這個網址,才能申請商品目錄驗證。查看
網址驗證狀態,請透過以下方式擷取帳戶的店面商品目錄廣告設定:
liasettings.get
並查看
關聯狀態欄位的值:
GET https://shoppingcontent.googleapis.com/content/v2.1/12345/liasettings/67890
Response:
200 OK
{
"kind": "content#liaSettings",
"accountId" : 67890,
"countrySettings" : [{
"country" : "US"
},
{
"country" : "DE",
"about" : {
"url" : "https://www.example.com/de/about",
"status" : "pending"
}
}]
}
與網址相關聯的狀態變更為 active
後,網址就會為
已驗證。如果狀態為「inactive
」,表示有問題需要解決
與您的「簡介」頁面連結請先解決所有問題,再觸發新的
只要更新店面商品目錄廣告
以及「簡介」頁面的位置設定 (無論是相同還是
已變更。
「可訂購的展示商品」和「店內訂單」政策頁面
如要使用 可訂購的展示商品 (ODO) 功能,請您再分別為每個國家/地區進行設定:
PUT https://shoppingcontent.googleapis.com/content/v2.1/12345/liasettings/67890
{
"accountId" : 67890,
"countrySettings" : [{
"country" : "US",
"onDisplayToOrder": {
"shippingCostPolicyUrl" : "https://www.example.com/inStoreOrderPolicy"
}
}]
}
請注意,您必須在申請「之前」驗證為 ODO 提供的網址 商品目錄驗證作業檢查驗證和/或申請流程 如有問題,又會再次審查政策網址 「關於」頁面:
GET https://shoppingcontent.googleapis.com/content/v2.1/12345/liasettings/67890
Response:
200 OK
{
"kind": "content#liaSettings",
"accountId" : 67890,
"countrySettings" : [{
"country" : "US",
"onDisplayToOrder": {
"shippingCostPolicyUrl" : "https://www.example.com/inStoreOrderPolicy",
"status" : "pending"
}
}]
}