Google Java API - feed.insert(entry) 期间出现错误"com.google.gdata.util.ServiceException: Bad Gateway"



我在一个电子表格中有两个工作表。如果满足某些条件,我会将值从一张表复制到另一张表。它已经工作了两周,从昨天开始收到这个问题。未进行任何更改。执行此语句时将出现下面提到的错误消息。

请注意,此错误并非总是出现,而且在迭代一些for循环后也会出现错误,有时当x=10时,有时当y=100或x=500 时

导致错误的代码:

 for (int x=1; x <= row_TODAY_WS;x++){
    for(int y=1; y <= col_TODAY_WS;y++){
       CellEntry newEntry = new CellEntry (x, y, feed_cell_0.getEntries().get(i).getPlainTextContent());
       feed_1.insert(newEntry);
      i++;
    }
  }

错误消息:

com.google.gdata.util.ServiceException: Bad Gateway
<!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-heipx 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{cation: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.gors/logo_sm_2.png) no-repeat}@media only screen and (min-resolution:192dpi){#logo{background:url(//www.google.com/images/errors/logo_sm_2_hr.png) no-repeat 0%order-image:url(//www.google.com/images/errors/logo_sm_2_hr.png) 0}}@media only screen and (-webkit-min-device-pixel-ratio:2){#logo{background:url(//www.goog/logo_sm_2_hr.png) no-repeat;-webkit-background-size:100% 100%}}#logo{display:inline-block;height:55px;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>
        at com.google.gdata.client.http.HttpGDataRequest.handleErrorResponse(HttpGDataRequest.java:632)
        at com.google.gdata.client.http.GoogleGDataRequest.handleErrorResponse(GoogleGDataRequest.java:564)
        at com.google.gdata.client.http.HttpGDataRequest.checkResponse(HttpGDataRequest.java:560)
        at com.google.gdata.client.http.HttpGDataRequest.execute(HttpGDataRequest.java:538)
        at com.google.gdata.client.http.GoogleGDataRequest.execute(GoogleGDataRequest.java:536)
        at com.google.gdata.client.Service.insert(Service.java:1409)
        at com.google.gdata.client.GoogleService.insert(GoogleService.java:613)
        at com.google.gdata.data.BaseFeed.insert(BaseFeed.java:535)

HTTP错误502(坏网关)是服务器错误。运行电子表格API的谷歌服务器似乎有问题。问题不在于你的代码。

你的电脑联系了一个谷歌服务器,该服务器充当了实际执行工作的服务器的代理。然后,第二台服务器遇到了某种问题,这意味着它无法向代理服务器返回有效的响应,然后代理可以将该响应返回给您。结果,代理服务器向您发回了一个HTTP502响应。

我希望谷歌的系统足够智能,能够检测到这些问题并自动通知谷歌工程师。也许谷歌的某个人现在正在解决这个问题。然而,我不为谷歌工作,所以我不能肯定这是真的。

如果没有别的,你可以试着在谷歌电子表格API论坛上发布。

相关内容

  • 没有找到相关文章

最新更新