Google Java api - error “com.google.gdata.util.ServiceException: Bad Gateway” during feed.insert(entry)

梦想与她 提交于 2019-12-02 07:42:08

HTTP error 502 (Bad Gateway) is a server error. There looks to be a problem with one of the Google servers involved in running the spreadsheets API. The problem isn't with your code.

Your computer contacted a Google server, which acted as a proxy for the server that would actually do the work. This second server then encountered a problem of some kind which meant that it could not return a valid response to the proxy server which the proxy could then pass back to you. As a result, the proxy server sent you back an HTTP 502 response.

I would hope that Google's systems would be smart enough to detect these problems and notify Google engineers automatically. Perhaps someone from Google is working on the problem right now. However, I don't work for Google so I can't say that this is true for sure.

If nothing else, you could try posting on the Google Spreadsheets API forum.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!