0

我正在尝试配置 Google 服务帐户(在开发人员控制台中)以在我的应用程序中使用它来获取报告 API。

我收到错误消息 - “访问被拒绝。您无权阅读活动记录”。配置似乎有些问题。

我在 Google Developers Console 中创建了新的项目和服务帐户。在管理控制台设置管理 API 客户端访问菜单中添加了客户端 ID。

也许我错过了什么?

请帮忙。

服务器响应是:

{
  "error": {
    "errors": [
      {
        "domain": "global",
        "reason": "authError",
        "message": "Access denied. You are not authorized to read activity records.",
        "locationType": "header",
        "location": "Authorization"
      }
    ],
    "code": 401,
    "message": "Access denied. You are not authorized to read activity records."
  }
}
4

1 回答 1

1

如果您还没有这样做,您可以尝试.setServiceAccountUser("admins email address")按照此SO 帖子中的描述调用。

于 2018-08-31T02:24:26.960 回答