问题严重程度和 Merchant Center 诊断

假设您想获取您账号中当前可用商品的信息。特别是,您有兴趣了解您的任何商品是否存在需要解决的问题。您知道如何从 Merchant Center 获取此信息,但您更愿意使用 Content API 设置自动警报系统。在本指南中,我们将介绍 Content API 中的问题严重性信息如何映射到 Merchant Center 中诊断报告中显示的问题优先级。

使用 Content API 的示例

如需获取影响您的商品的问题,您可以为您的账号运行 accountstatuses.get。以下是您恢复的资源的减少示例:

{
 "kind": "content#accountStatus",
 "accountId": "...",
 "accountLevelIssues": [
    {
     "id": "editorial_and_professional_standards_destination_url_down_policy",
     "title": "Account suspended due to policy violation: landing page not working",
     "country": "US",
     "severity": "critical",
     "documentation": "https://support.google.com/merchants/answer/6150244#wycd-usefulness"
    },
    {
     "id": "missing_ad_words_link",
     "title": "No Google Ads account linked",
     "severity": "error",
     "documentation": "https://support.google.com/merchants/answer/6159060"
    }
   ],
   "products": [
      {
       "channel": "online",
       "destination": "Shopping",
       "country": "US",
       "statistics": {
        "active": "0",
        "pending": "0",
        "disapproved": "5",
        "expiring": "0"
       },
       "itemLevelIssues": [
        {
         "code": "image_link_broken",
         "servability": "disapproved",
         "resolution": "merchant_action",
         "attributeName": "image link",
         "description": "Invalid image [image link]",
         "detail": "Ensure the image is accessible and uses an accepted image format (JPEG, PNG, GIF)",
         "documentation": "https://support.google.com/merchants/answer/6098289",
         "numItems": "2"
        },
        {
         "code": "landing_page_error",
         "servability": "disapproved",
         "resolution": "merchant_action",
         "attributeName": "link",
         "description": "Unavailable desktop landing page",
         "detail": "Update your website or landing page URL to enable access from desktop devices",
         "documentation": "https://support.google.com/merchants/answer/6098155",
         "numItems": "5"
        }
      ]
     },
  ...
}

accountLevelIssues[].severity 下,您会看到 Merchant Center 账号错误的严重程度。Critical 错误会导致账号中止,这会导致您无法投放商品。

itemLevelIssues 下,您可以看到可能会导致商品被拒批的商品错误。请注意,itemLevelIssues[].numItems 会告知您账号中有 2 件商品受到损坏的图片链接影响,并且有 5 件商品存在着陆页错误。

itemLevelIssues[].servability 下,您可以查看相应错误是否会导致受影响的商品被拒批。请注意,图片链接损坏和着陆页错误都会导致商品被拒批。

如需查找受影响的所有商品,请调用 Productstatuses.list 以获取每件商品的完整问题列表。它会返回如下条目:

 {
  "kind": "content#productstatusesListResponse",
  ...
  "resources": [
   {
     "kind": "content#productStatus",
     "productId": "online:en:US:online-en-US-GGL614",
     ...
     "itemLevelIssues": [
       {
         "code": "mobile_landing_page_crawling_not_allowed",
         "servability": "disapproved",
         "resolution": "merchant_action",
         "attributeName": "link",
         "destination": "Shopping",
         "description": "Mobile page not crawlable due to robots.txt",
         "detail": "Update your robots.txt file to allow user-agents \"Googlebot\" and \"Googlebot-Image\" to crawl your site",
         "documentation": "https://support.google.com/merchants/answer/6098296"
       },
       {
         "code": "pending_initial_policy_review",
         "servability": "disapproved",
         "resolution": "pending_processing",
         "destination": "Shopping",
         "description": "Pending initial review",
         "documentation": "https://support.google.com/merchants/answer/2948694"
       },
       {
         "code": "ambiguous_gtin",
         "servability": "unaffected",
         "resolution": "merchant_action",
         "attributeName": "gtin",
         "destination": "Shopping",
         "description": "Ambiguous value [gtin]",
         "detail": "Use the full GTIN. Include leading zeroes, and use the full UPC, EAN, JAN, ISBN-13, or ITF-14.",
         "documentation": "https://support.google.com/merchants/answer/7000891"
       }
     ],
     ...
   },
   ...
   ]
 }

现在您掌握了有关账号中所有商品问题的信息,但目前尚不清楚解决这些问题的重要性。

productstatuses 示例中,您可以使用 itemLevelIssues[].servability 来了解是否存在错误导致您无法在 Google 易购、购物广告或 Google 各平台呈现中展示商品。

如果 itemLevelIssues[].servabilityunaffected(如 ambiguous_gtin 错误),则该错误不会阻止您的商品投放。

不过,如果 itemLevelIssues[].servabilitydisapproved(如 mobile_landing_page_crawling_not_allowed 错误),则表示这是一个更严重的错误,因为您必须先修正此错误,然后才能投放商品。

accountstatuses 示例中,Merchant Center“诊断”部分accountLevelIssues[].severity 下定义了问题优先级以及不同优先级的确切含义。

首先,查看报告:

从 Merchant Center 获得的诊断报告

您从 Content API for Shopping 获取的所有信息与您在“诊断”部分中看到的信息有何关联?哪些条目是您需要尽快解决的问题,哪些条目是可以轻松处理,但是不需要解决的?如果没有解决问题,哪些问题会阻止您的商品投放到广告中?

如这些示例所示,“诊断”部分会提供有关账号和该账号中商品的问题的严重性信息,而 Content API(通过 Accountstatuses 服务)仅提供 accountLevel 问题的严重性信息。

根据问题的严重性,每个来源将问题分为三类。了解状态相关服务所返回的问题严重性的判断方法,有助于判断哪些问题是最重要的并且亟待解决的,哪些问题可以放心地忽略。

问题优先级

在“诊断”部分中,问题优先级将问题严重性描述为以下三个级别之一:错误、警告和通知。在上述这类报表中,这些级别用显示在第一列的图片表示:错误 代表错误、警告 代表警告,通知 代表通知。

  • 错误导致账号被中止或商品被拒批。您应尽快解决这些问题,以确保商品可以重新显示在搜索结果中。

  • 警告可能会对您的广告效果产生负面影响。如果不解决,日后可能会导致商品暂停展示或账号被中止。

  • 通知是建议的优化措施,可提高数据质量。我们建议您解决这些问题,但这并非强制要求。

不过,我们无需访问 Merchant Center 即可了解具体错误。 在 Content API 中,accountstatuses 资源对象中的 accountLevelIssues[].severity 字段提供相同的问题严重性信息。这些字段可以包含下列三个值之一:criticalerrorsuggestion

这些值与“诊断”标签页上的问题优先级一一对应:

数据质量问题严重性 (API) 问题优先级
critical 错误 (错误)
error 警告 (警告)
suggestion 通知 (通知)

因此,在我们的 accountstatuses 示例中,通过 missing_ad_words_link 问题,您可以了解自己是否需要关联 Google Ads 账号才能投放广告,但这不会影响商品在 Merchant Center 数据库中的审批。另一方面,editorial_and_professional_standards_destination_url_down_policy 是一种更严重的错误,会导致您的账号被中止。如果您参与了“在 Google 上购买”“在 Google 各平台上展示”计划,或者您已关联 Google Ads 账号,那么出现 critical 错误后,您的商品将立即停止在“在 Google 上购买”“在 Google 各平台上展示”计划和购物广告计划中展示。

利用这些信息,您现在可以编写警报软件了,该软件会使您立刻注意到重要的问题,同时收集不太严重的问题以便最终解决,而不必访问 Merchant Center 来甄别各种问题。