คุณสามารถใช้แหล่งข้อมูล Product
เพื่อดูสถานะโดยละเอียด
ผลิตภัณฑ์ Shopping
เมื่อใช้ Content API คุณจะเรียกสถานะผลิตภัณฑ์ได้โดยการเรียกใช้
ProductStatuses.get
วิธี เมื่อใช้ Merchant API คุณจะเรียกข้อมูลผลิตภัณฑ์ได้
โดยการเรียกข้อมูลทรัพยากร Accounts.Products
คุณมีหน้าที่รับผิดชอบในการปฏิบัติตามข้อกำหนด Shopping โฆษณาและฟรี นโยบายข้อมูล โฆษณา Shopping ขอสงวนสิทธิ์ในการบังคับใช้นโยบายเหล่านี้ และจะดำเนินการตามความเหมาะสมหากเรา ค้นหาเนื้อหาหรือพฤติกรรมที่ละเมิดนโยบายเหล่านี้
ข้อกำหนด
หากต้องการดูสถานะผลิตภัณฑ์ คุณต้องทำดังนี้
- ลงทะเบียนบัญชีของคุณในปลายทาง
- ระบุรหัสประเทศที่ถูกต้องตามข้อใดข้อหนึ่งต่อไปนี้
- ช่อง
feedLabel
- ช่อง
shipping
- ที่ระดับฟีด
- การตั้งค่าการจัดส่งในบัญชีของคุณ
- ช่อง
ดูสถานะของผลิตภัณฑ์
เรียกข้อมูลทรัพยากร Accounts.Products
เพื่อดูสถานะของผลิตภัณฑ์
ตัวอย่างคำขอ GET
มีดังนี้
GET https://merchantapi.googleapis.com/products/v1beta/{name=accounts/*/products/*}
คำตอบทั้งหมดจาก products.get
จะมีช่องต่อไปนี้
creationDate
: วันที่สร้างผลิตภัณฑ์lastUpdateDate
: เวลาล่าสุดที่มีการอัปเดตผลิตภัณฑ์googleExpirationDate
: วันที่ที่ผลิตภัณฑ์หมดอายุdestinationStatuses
: ปลายทางสำหรับผลิตภัณฑ์itemLevelIssues
: รายการปัญหาทั้งหมดที่เกี่ยวข้องกับผลิตภัณฑ์
คุณจะเห็นช่อง itemLevelIssues
ในการตอบกลับหากผลิตภัณฑ์มี
ปัญหาระดับสินค้า ณ เวลาที่ขอ
ตัวอย่างการตอบสนอง JSON มีดังนี้
{
"name": "accounts/123/products/online~en~US~1",
"channel": "ONLINE",
"offerId": "1",
"contentLanguage": "en",
"feedLabel": "US",
"dataSource": "accounts/123/dataSources/456",
"attributes": {
"title": "Color Headphones",
"description": "A light and elegant design and super sound quality make these over-ear headphones a constant companion. Foldable to save space, and printed with the white Google logo on one earpiece.",
"imageLink": "http://tmp53317.purecake.com/images/headphones.jpg",
"availability": "in stock",
"brand": "Google",
"condition": "new",
"googleProductCategory": "Electronics \u003e Audio \u003e Audio Components \u003e Headphones",
"gtin": "00050644632143",
"mpn": "90000007101",
"price": {
"amountMicros": "288000",
"currencyCode": "USD"
}
},
"productStatus": {
"destinationStatuses": [
{
"reportingContext": "FREE_LISTINGS",
"disapprovedCountries": [
"US"
]
}
],
"itemLevelIssues": [
{
"code": "pending_phone_verification",
"severity": "NOT_IMPACTED",
"resolution": "merchant_action",
"reportingContext": "FREE_LISTINGS",
"description": "Unverified phone number",
"detail": "Go to the Business information page to verify your business phone number",
"documentation": "https://support.google.com/merchants/answer/10139041",
"applicableCountries": [
"US"
]
},
{
"code": "pending_initial_policy_review_free_listings",
"severity": "DISAPPROVED",
"resolution": "pending_processing",
"reportingContext": "FREE_LISTINGS",
"description": "Pending initial review",
"detail": "Please wait up to 3 business days for the review to be completed",
"documentation": "https://support.google.com/merchants/answer/2948694",
"applicableCountries": [
"US"
]
},
{
"code": "url_does_not_match_homepage",
"severity": "DISAPPROVED",
"resolution": "merchant_action",
"attribute": "link",
"reportingContext": "FREE_LISTINGS",
"description": "Mismatched domains [link]",
"detail": "Use the same domain for product landing page URLs as in your Merchant Center website setting",
"documentation": "https://support.google.com/merchants/answer/160050",
"applicableCountries": [
"US"
]
}
],
"creationDate": "2024-05-27T16:15:31.791730Z",
"lastUpdateDate": "2024-05-27T16:15:31.791730Z",
"googleExpirationDate": "2024-06-26T16:15:31.791730Z"
}
แสดงสถานะผลิตภัณฑ์ทั้งหมด
ใช้ products.list
เพื่อดูผลิตภัณฑ์ทั้งหมดและสถานะ
คุณสามารถใช้พารามิเตอร์ต่อไปนี้เพื่อปรับแต่งข้อความค้นหาของคุณ
pageToken
: ใช้เพื่อรับผลการค้นหาหน้าถัดไป ทุกหน้ามี คุณใช้nextPageToken
เพื่อแสดงหน้าถัดไปในลำดับได้maxResults
: จำนวนผลการค้นหาสูงสุดต่อหน้า
ต่อไปนี้คือตัวอย่างคำขอ list
ที่มีพารามิเตอร์การค้นหาที่ไม่บังคับ
GET https://merchantapi.googleapis.com/products/v1beta/{parent}/products?maxResults=1&pageToken=5108b52782905aa9
ตัวอย่างการตอบสนอง JSON มีดังนี้
{
"nextPageToken": "632fd090c95712c6",
"products": [
{
"name": "accounts/123/products/online~en~US~1",
"channel": "ONLINE",
"offerId": "1",
"contentLanguage": "en",
"feedLabel": "US",
"dataSource": "accounts/123/dataSources/10355371287",
"attributes": {
"title": "Color Headphones",
"description": "A light and elegant design and super sound quality make these over-ear headphones a constant companion. Foldable to save space, and printed with the white Google logo on one earpiece.",
"imageLink": "http://tmp53317.purecake.com/images/headphones.jpg",
"availability": "in stock",
"brand": "Google",
"condition": "new",
"googleProductCategory": "Electronics \u003e Audio \u003e Audio Components \u003e Headphones",
"gtin": "00050644632143",
"mpn": "90000007101",
"price": {
"amountMicros": "28800000",
"currencyCode": "USD"
}
},
"productStatus": {
"destinationStatuses": [
{
"reportingContext": "FREE_LISTINGS",
"disapprovedCountries": [
"US"
]
}
],
"itemLevelIssues": [
{
"code": "pending_phone_verification",
"severity": "NOT_IMPACTED",
"resolution": "merchant_action",
"reportingContext": "FREE_LISTINGS",
"description": "Unverified phone number",
"detail": "Go to the Business information page to verify your business phone number",
"documentation": "https://support.google.com/merchants/answer/10139041",
"applicableCountries": [
"US"
]
},
{
"code": "pending_initial_policy_review_free_listings",
"severity": "DISAPPROVED",
"resolution": "pending_processing",
"reportingContext": "FREE_LISTINGS",
"description": "Pending initial review",
"detail": "Please wait up to 3 business days for the review to be completed",
"documentation": "https://support.google.com/merchants/answer/2948694",
"applicableCountries": [
"US"
]
},
{
"code": "url_does_not_match_homepage",
"severity": "DISAPPROVED",
"resolution": "merchant_action",
"attribute": "link",
"reportingContext": "FREE_LISTINGS",
"description": "Mismatched domains [link]",
"detail": "Use the same domain for product landing page URLs as in your Merchant Center website setting",
"documentation": "https://support.google.com/merchants/answer/160050",
"applicableCountries": [
"US"
]
}
],
"creationDate": "2024-05-27T16:15:31.791730Z",
"lastUpdateDate": "2024-05-27T16:15:31.791730Z",
"googleExpirationDate": "2024-06-26T16:15:31.791730Z"
}
]
}
การเรียก productstatuses.list
สามารถทดสอบในการใช้งานจริงได้เนื่องจากไม่ได้ใช้
ทำการเปลี่ยนแปลงข้อมูลได้
ปัญหาระดับสินค้า
ปัญหาระดับสินค้าแต่ละรายการจะมีช่องต่อไปนี้
code
: รหัสข้อผิดพลาดของปัญหาseverity
: ความรุนแรงของปัญหาresolution
: แจ้งให้ทราบว่าผู้ขายจะแก้ปัญหาได้หรือไม่attribute
: ชื่อแอตทริบิวต์ที่ได้รับผลกระทบreportingContext
: บริบทการรายงานที่เป็นปัญหาdescription
: คำอธิบายปัญหาdetail
: ให้ข้อมูลเพิ่มเติมเกี่ยวกับปัญหาdocumentation
: URL ของเอกสารประกอบเกี่ยวกับปัญหาapplicableCountries
: ระบุว่าประเทศใดเกิดปัญหา ผลิตภัณฑ์