调度代码时如何在R中的googlesheets4中自动select预授权帐户?

How to automatically select pre - authorized account in googlesheets4 in R when scheduling code?

我想弄清楚自动允许 googlesheet4 软件包选择我的预授权帐户下载特定 google sheet.

例如 - 我想 运行 每天一次 -

library(googlesheets4)
delta<-read_sheet(
  "https://docs.google.com/spreadsheets/xyz...",
  sheet = "XYZ Delta"
)

控制台给出以下输出:

The googlesheets4 package is requesting access to your Google account.
Select a pre-authorised account or enter '0' to obtain a new token. 
Press Esc/Ctrl + C to abort.

1. xyz@gmail.com

如上所示,我已经在上一步中授予它访问帐户的权限,以使用 google sheet。但它仍然要求我手动输入“1”来选择这个帐户。 是否可以自动执行此操作,以便我在自动安排此代码时不必手动输入“1”到 运行 此脚本?

如果你能指出正确的方向,我将不胜感激!

read_sheet

之前调用gs4_auth
gs4_auth("xyz@gmail.com")