如何通过Search Console API在Search Console中获得主展示?

时间:2019-01-19 14:05:51

标签: google-api google-search-console

根据some security reason,Google不允许我们查看所有印象,并且如果您在Search Console API中对印象中的数字求和,则总是小于您在Search Console面板中看到的数字。

现在我的问题是“如何在Search Console API中获得此号码?”

有可能吗?

enter image description here

2 个答案:

答案 0 :(得分:1)

对于某些项目,我们已经尝试过了。 Search Console和Search Console API之间存在一些差异

如果您try explorer注意到了

答案 1 :(得分:1)

如果您只需要顶级指标(无查询、无着陆页、无按国家/地区或设备过滤器),您可以通过发送不包含维度键和您喜欢的日期范围的请求来获得“总展示次数”(3如果您想模拟 UI,则需要几个月的时间)

以下是顶级指标的 1 个月数据示例:

 let body = {
    siteUrl: "https://yourwebsite.com",
    requestBody: {
      startDate: "2021-01-01",
      endDate: "2021-01-31",
    }
}