Gargle 非交互式服务帐户令牌身份验证不起作用

Gargle non-interactive service account token authentication not working

我使用的是 googlesheets4 包,它使用 gargle 进行身份验证。我有一个定期 运行 的预定脚本,因此我需要设置非交互式身份验证。我尝试按照我找到的所有说明设置服务帐户令牌并使用它进行身份验证,但似乎仍然无法正常工作。

我创建了一个服务帐户令牌并将其存储在 JSON 文件中。然后我使用了以下命令:

gs4_auth (
   scopes="https://www.googleapis.com/auth/spreadsheets", 
   path="/path/to/my/service/token.json")

使用 options(gargle_quiet = FALSE),我看到以下内容:

trying token_fetch()
trying credentials_service_account()
adding 'userinfo.email' scope
service account email: email_address@project.iam.gserviceaccount.com

似乎一切正常!

但是当我尝试 运行 gs <- gs4_find(my_sheet_name) 时,我得到以下信息:

attempt from: googledrive
trying token_fetch()
trying credentials_service_account()
Error: Argument 'txt' must be a JSON string, URL or file.
trying credentials_app_default()
trying credentials_gce()
trying credentials_byo_oauth()
Error: inherits(token, "Token2.0") is not TRUE
trying credentials_user_oauth2()
Gargle2.0 initialize
attempt from: googledrive
adding 'userinfo.email' scope
loading token from the cache
no matching token in the cache
initiating new token

...然后它打开浏览器 window,要求我登录我的帐户。 似乎 credentials_service_account() 第一次成功,但随后再次调用它并失败。我在这里错过了什么?

提前致谢!

此问题现已解决,并在 googlesheets4 软件包的 Github 页面上回复了此 post 的副本!

事实证明,gs4_find 实际上是 googledrive::drive_find 的包装器。因此,为了让服务令牌用于此功能,我需要使用 googledrive 而不是 googlesheets4 进行身份验证。如果您同时使用两者,甚至还有关于在 googlesheets4googledrive 之间协调身份验证的完整 article here

对于我的特定用例,我实际上最终只是将 Google Sheet ID 硬编码到我的脚本中,而不是使用 gs4_find 进行名称查找,从而避免使用谷歌驱动器完全。认为这足以满足我的目的。