GMail 加载项/Apps 脚本无法连接到 Google Cloud SQL - 调用 getCloudSqlConnection 的权限

GMail Add-On / Apps script can't connect to Google Cloud SQL - permission to call getCloudSqlConnection

我正在编写一个简单的附加组件,它将从我们的数据库中获取每条消息的发件人数据。 GMail 附加组件获取消息 ID 并查询我们的数据库以获取有关客户端的其他数据以将其显示给用户。

我已经按照 MySQL 和 Postgres 的 CloudSQL 教程进行操作,在最简单的情况下我遇到了这个错误

You do not have permission to call getCloudSqlConnection

当我尝试连接到 GCP 云时 SQL。不过,从外部连接外部客户端等没问题。

代码如下

var conn = Jdbc.getCloudSqlConnection("jdbc:google:mysql://[my-project-and-instance-id]/[my-db-name]", [user], [password]);

我的脚本与数据库附加到同一个项目。

互联网搜索 "You do not have permission to call getCloudSqlConnection" 给出了一个空的结果。

在我的清单文件中包含“https://www.googleapis.com/auth/sqlservice”到 "oauthScopes" 为我修复了错误。

更新范围:

"oauthScopes": ["https://www.googleapis.com/auth/gmail.addons.execute","https://www.googleapis.com/auth/cloud-platform", "https://www.googleapis.com/auth/sqlservice", "https://www.googleapis.com/auth/sqlservice.admin", "https://www.googleapis.com/auth/gmail.readonly", "https://www.googleapis.com/auth/script.external_request", "https://www.googleapis.com/auth/userinfo.email", "https://www.googleapis.com/auth/gmail.addons.current.action.compose"]