与服务帐户电子邮件共享 Google sheet
Sharing Google sheet with service account email
我写了一个脚本来连接到 Google spreadsheet 并将数据从它加载到 postgresql 数据库中。
我已经创建了一个服务帐户并以 .json 格式为其获取了必要的凭据,问题是当我尝试与我的服务帐户电子邮件共享 google sheet 时,我收到一封电子邮件说:
Delivery to the following recipient failed permanently:
dataload@geometric-shine-118101.iam.gserviceaccount.com
Technical details of permanent failure: DNS Error: Address resolution
of geometric-shine-118101.iam.gserviceaccount.com. failed: Domain name
not found
该电子邮件与我在 .json 密钥文件中收到的完全相同。
我检查了其他帖子,通常应该共享的电子邮件结构是这样的:
project_name@developer.gserviceaccount.com
但是我的不一样,可能跟这个有关?
我按照 link.
上的说明进行操作
这是 .json 密钥文件的副本:
{
"type": "service_account",
"project_id": "geometric-shine-118101",
"private_key_id": "xxx",
"private_key": "-----BEGIN PRIVATE KEY-----\nxxx\n-----END PRIVATE KEY-----\n",
"client_email": "dataload@geometric-shine-118101.iam.gserviceaccount.com",
"client_id": "117076930343404252458",
"auth_uri": "https://accounts.google.com/o/oauth2/auth",
"token_uri": "https://accounts.google.com/o/oauth2/token",
"auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs",
"client_x509_cert_url": "https://www.googleapis.com/robot/v1/metadata/x509/dataload%40geometric-shine-118101.iam.gserviceaccount.com"
}
我解决了我的问题:
Google 已更新其服务帐户详细信息格式以及与服务帐户共享电子表格的方式,以便可以从 gspread 访问它们。
然后我创建了一个具有新格式的服务帐户:dataload@geometric-shine-118101.iam.gserviceaccount.com 并将完全相同的文件 google 生成为 JSON由我的应用程序读取:
login = SignedJwtAssertionCredentials(json_key['client_email'], json_key['private_key'], scope)
然后在没有通知的情况下将电子表格与我的服务帐户电子邮件共享(与我刚才提到的 JSON 文件中的相同)
我写了一个脚本来连接到 Google spreadsheet 并将数据从它加载到 postgresql 数据库中。 我已经创建了一个服务帐户并以 .json 格式为其获取了必要的凭据,问题是当我尝试与我的服务帐户电子邮件共享 google sheet 时,我收到一封电子邮件说:
Delivery to the following recipient failed permanently:
dataload@geometric-shine-118101.iam.gserviceaccount.com
Technical details of permanent failure: DNS Error: Address resolution of geometric-shine-118101.iam.gserviceaccount.com. failed: Domain name not found
该电子邮件与我在 .json 密钥文件中收到的完全相同。 我检查了其他帖子,通常应该共享的电子邮件结构是这样的:
project_name@developer.gserviceaccount.com
但是我的不一样,可能跟这个有关? 我按照 link.
上的说明进行操作这是 .json 密钥文件的副本:
{
"type": "service_account",
"project_id": "geometric-shine-118101",
"private_key_id": "xxx",
"private_key": "-----BEGIN PRIVATE KEY-----\nxxx\n-----END PRIVATE KEY-----\n",
"client_email": "dataload@geometric-shine-118101.iam.gserviceaccount.com",
"client_id": "117076930343404252458",
"auth_uri": "https://accounts.google.com/o/oauth2/auth",
"token_uri": "https://accounts.google.com/o/oauth2/token",
"auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs",
"client_x509_cert_url": "https://www.googleapis.com/robot/v1/metadata/x509/dataload%40geometric-shine-118101.iam.gserviceaccount.com"
}
我解决了我的问题:
Google 已更新其服务帐户详细信息格式以及与服务帐户共享电子表格的方式,以便可以从 gspread 访问它们。
然后我创建了一个具有新格式的服务帐户:dataload@geometric-shine-118101.iam.gserviceaccount.com 并将完全相同的文件 google 生成为 JSON由我的应用程序读取:
login = SignedJwtAssertionCredentials(json_key['client_email'], json_key['private_key'], scope)
然后在没有通知的情况下将电子表格与我的服务帐户电子邮件共享(与我刚才提到的 JSON 文件中的相同)