Google 组 api 发现 URL 有什么问题?

What is wrong with the Google groups api discovery URL?

我正在尝试使用 Python 脚本来管理 Google 组。该脚本基本上是 Google 提供的以下 quickstart.py 脚本,仅修改为适用于组而不是文档。 (参见 here。)

尝试此操作时:

service = build('groups', 'v1', credentials=creds)

返回以下错误:

googleapiclient.errors.HttpError: <HttpError 502 when requesting https://groups.googleapis.com/$discovery/rest?version=v1 returned "Bad Gateway">

在浏览器中快速检查 URL 会导致 502 错误。

然而,检查其他 api 发现 URL 似乎工作正常。例如:浏览到

https://notebooks.googleapis.com/$discovery/rest?version=v1

导致所请求的发现信息按预期以 JSON 格式返回。

我已经搜索和阅读文档到分心的地步,但似乎无法找到组发现有什么问题 URL。任何帮助将不胜感激。

我看错方向了。基于另一个错误的更多搜索发现我应该使用管理员 URL:

https://admin.googleapis.com/$discovery/rest?version=directory_v1

感谢 让我参与其中。