报告API 503后端错误



在过去的几周里,我用于从Reports API检索用户使用情况报告的批处理任务失败,并出现以下响应:

com.google.api.client.googleapis.json.GoogleJsonResponseException: 503 OK
{
  "code" : 503,
  "errors" : [ {
    "domain" : "global",
    "message" : "Backend Error",
    "reason" : "backendError"
  }],
  "message" : "Backend Error"
}

其他人看到这个错误了吗?看起来像是API上的内部错误。我能做些什么来避免这个问题吗?谢谢

由于未找到或删除项目编号(发件人ID),因此出现此错误。在中创建新闻项目https://console.developers.google.com/project并使用此url进行测试:https://www.googleapis.com/storage/v1/b?project=项目编号

感谢

当我有一个端点查询时,我的后端有一个503。当您首先使用google数据存储时,必须在localhost上运行它,这样它才能在名为datastore-indexes-auto.xml的文件中创建索引这是自动生成的。

这是一个索引示例

<!-- Used 1 time in query history -->
<datastore-index kind="Conference" ancestor="true" source="auto">
    <property name="name" direction="asc"/>
</datastore-index>

相关内容

  • 没有找到相关文章

最新更新