“保持与谷歌电子表格的联系”有几个例子,但我发现的都是基于“旧”谷歌登录系统,该系统自 2015 年 4 月以来不再工作
使用 OAuth 2.0 保持与 googlespreadsheet 的连接的正确方法是什么
我试过这个
import gspread
from oauth2client.service_account import ServiceAccountCredentials
headers = gspread.httpsession.HTTPSession(headers={'Connection':'Keep-Alive'}) #Allows a persistant connection.
scope = ['https://spreadsheets.google.com/feeds']
credentials = ServiceAccountCredentials.from_json_keyfile_name('Apps Script Execution API.json', scope)
c = gspread.authorize(auth=credentials,http_session=headers)
结果:c = gspread.authorize(auth=credentials,http_session=headers) TypeError: authorize() got an unexpected keyword argument 'auth'