站长搜索控制台分析大数据

问题描述

我正在尝试使用 python 脚本分析网站管理员搜索的数据。 我的要求是这样的

startDate = '07/10/2020'
endDate   = '07/10/2021'
targetDomain = 'https://example.com'
request = {
            'startDate': startDate,'endDate': endDate,'searchType': 'web','dimensions': ['date','query','page'],# select the dimensions of your response
            'rowLimit': 25000,# this is the maximum row limit for GSC export data
            'startRow': 0
        }
while True:
    request['startRow'] = startRow
    response = webmaster_search_analytics.searchanalytics().query(siteUrl=targetDomain,body=request).execute()
    if last_call_len != len(response['rows']):
        break
    startRow = startRow + 25000
            

但是我无法分析数据,因为在几次请求后我从 API 中收到错误

googleapiclient.errors.HttpError: <HttpError 502 when requesting https://www.googleapis.com/webmasters/v3/sites/https%3A%2F%2Fexample.com%2F/searchAnalytics/query?alt=json returned "Bad Gateway". Details: "<!DOCTYPE html>
<html lang=en>
  <Meta charset=utf-8>
  <Meta name=viewport content="initial-scale=1,minimum-scale=1,width=device-width">
  <title>Error 502 (Server Error)!!1</title>
  <style>
    *{margin:0;padding:0}html,code{font:15px/22px arial,sans-serif}html{background:#fff;color:#222;padding:15px}body{margin:7% auto 0;max-width:390px;min-height:180px;padding:30px 0 15px}* > body{background:url(//www.google.com/images/errors/robot.png) 100% 5px no-repeat;padding-right:205px}p{margin:11px 0 22px;overflow:hidden}ins{color:#777;text-decoration:none}a img{border:0}@media screen and (max-width:772px){body{background:none;margin-top:0;max-width:none;padding-right:0}}#logo{background:url(//www.google.com/images/branding/googlelogo/1x/googlelogo_color_150x54dp.png) no-repeat;margin-left:-5px}@media only screen and (min-resolution:192dpi){#logo{background:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) no-repeat 0% 0%/100% 100%;-moz-border-image:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) 0}}@media only screen and (-webkit-min-device-pixel-ratio:2){#logo{background:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) no-repeat;-webkit-background-size:100% 100%}}#logo{display:inline-block;height:54px;width:150px}
  </style>
  <a href=//www.google.com/><span id=logo aria-label=Google></span></a>
  <p><b>502.</b> <ins>That’s an error.</ins>
  <p>The server encountered a temporary error and Could not complete your request.<p>Please try again in 30 seconds.  <ins>That’s all we kNow.</ins>
">

我知道这与 API 的限制有关,但有什么方法可以绕过这个错误。有没有办法增加请求配额限制? 请帮我解决这个问题,因为我被这个问题困住了

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)