相关疑难解决方法(0)

为什么使用 Google Cloud Datastore API Explorer 会收到 503 Service Unavailable 错误?

我使用 Google Cloud Console 中的 API Explorer 提交了以下请求:

{
"query": {
"kinds": [
{
"name": "Car"
}
],
"filter": {
"propertyFilter": {
"property": {
"name": "car_name"
},
"operator": "equal",
"value": {
"stringValue": "Honda"
}
}
}
}
}
Run Code Online (Sandbox Code Playgroud)

我得到了以下回复:

{
"error": {
"errors": [
{
"domain": "global",
"reason": "backendError",
"message": "Backend Error"
}
],
"code": 503,
"message": "Backend Error"
}
}
Run Code Online (Sandbox Code Playgroud)

我也通过 OAuth 进行了身份验证。为什么这行不通?

google-app-engine google-cloud-datastore

5
推荐指数
1
解决办法
9572
查看次数