Why do I get 503 Service Unavailable errors using the Google Cloud Datastore API explorer?

依然范特西╮ 提交于 2020-08-19 13:01:15

问题


I submitted the following request using the API explorer in the Google Cloud Console:

{
"query": {
"kinds": [
{
"name": "Car"
}
],
"filter": {
"propertyFilter": {
"property": {
"name": "car_name"
},
"operator": "equal",
"value": {
"stringValue": "Honda"
}
}
}
}
}

And I got the following response:

{
"error": {
"errors": [
{
"domain": "global",
"reason": "backendError",
"message": "Backend Error"
}
],
"code": 503,
"message": "Backend Error"
}
}

I've authenticated with OAuth as well. Why won't this work?


回答1:


I see these errors myself sometimes. AFAIK, this basically says "You did everything right, but Google is having some trouble handling your request."

If you see this happening a lot, you should check status.cloud.google.com to see if there are any known issues.

In short: there's not much you can do about a 503 Backend Error. :(



来源:https://stackoverflow.com/questions/26188334/why-do-i-get-503-service-unavailable-errors-using-the-google-cloud-datastore-api

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