Google API 错误 400:"Client project not found"

Google API Error 400: "Client project not found"

这是我第一次深入研究 Google API。我正在尝试按照 Google 说明进行简单测试。此时,我已经创建了项目并设置了凭据。按照 Google 的说明 here,我创建了一个测试页面并完全按照上述 link.

中所述复制了页面代码

当我 运行 页面时,我最初看到一个授权按钮,要求我登录我的帐户。到目前为止一切都很好。但是,一旦我登录 Google,我收到以下错误:

"{"error": {"code": 400,
            "message": "Client project not found. Please pass a valid project.",
            "status": "INVALID_ARGUMENT",
            "details": [{"@type": "type.googleapis.com/google.rpc.Help",
                         "links": [{"description": "Google developers console",
                                    "url": "https://console.developers.google.com"
                                  }]
                       }]
 }}"

我已经阅读了我能找到的少量内容,没有任何内容提到这个具体错误。

有人遇到这个错误,或者有什么想法吗?

谢谢!

啊,解决了!

对于新的 Google API,您需要在开发者控制台中启用 API。

转到:https://console.developers.google.com

在列表中,找到您要使用的 API(对我来说是表格 API),单击它并启用它。

它现在就像一个魅力:-)