根据下面的帖子#244来验证凭证,我们可以定义 GOOGLE_APPLICATION_CREDENTIALS 环境变量来直接进行身份验证。
这是我在代码中所做的。
import gspread
from oauth2client.client import GoogleCredentials
credentials = GoogleCredentials.get_application_default()
credentials.create_scoped(['https://spreadsheets.google.com/feeds'])
gc = gspread.authorize(credentials)
wks = gc.open("hello").sheet1
但是当我运行它时,它会引发 oauth2client.client.HttpAccessTokenRefreshError: invalid_grant
关于如何解决这个问题的任何建议?
谢谢,