2
根據以下文章#244驗證憑證,我們可以定義GOOGLE_APPLICATION_CREDENTIALS環境變量以直接進行身份驗證。python gspread oauth2client.client.HttpAccessTokenRefreshError:invalid_grant
這是我在我的代碼中所做的。
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
關於如何解決這個有什麼建議?
感謝,