无法使用 Python gspread Google 电子表格 lastUpdateTime
Unable to Google spreadsheet lastUpdateTime using Python gspread
我正在使用 Google 电子表格 api 和 Python 程序包 gspread
我已通过将服务帐户添加到电子表格邀请作为查看者授予对电子表格的读取权限。
我可以阅读电子表格内容,但无法获取 lastUpdateTime
我看到以下异常,
gspread.exceptions.APIError:
{'errors':
[{'domain': 'usageLimits',
'reason': 'accessNotConfigured',
'message': 'Access Not Configured. Drive API has not been used in project <projct_num> before or it is disabled. Enable it by visiting
https://console.developers.google.com/apis/api/drive.googleapis.com/overview?project=<projct_num> then retry.
但我找不到确切需要启用的内容。
Access Not Configured. Drive API has not been used in project
表示您正在使用需要访问 Google 驱动器 api 的方法。为了使用该方法,您需要在项目中启用 api。您可能已经启用了 google 工作表 api 您只需要同时启用驱动器 api。
按照库下的说明转到 google 开发人员控制台并启用 google 驱动器 api。请稍等几分钟,然后重试。
我正在使用 Google 电子表格 api 和 Python 程序包 gspread
我已通过将服务帐户添加到电子表格邀请作为查看者授予对电子表格的读取权限。
我可以阅读电子表格内容,但无法获取 lastUpdateTime
我看到以下异常,
gspread.exceptions.APIError:
{'errors':
[{'domain': 'usageLimits',
'reason': 'accessNotConfigured',
'message': 'Access Not Configured. Drive API has not been used in project <projct_num> before or it is disabled. Enable it by visiting
https://console.developers.google.com/apis/api/drive.googleapis.com/overview?project=<projct_num> then retry.
但我找不到确切需要启用的内容。
Access Not Configured. Drive API has not been used in project
表示您正在使用需要访问 Google 驱动器 api 的方法。为了使用该方法,您需要在项目中启用 api。您可能已经启用了 google 工作表 api 您只需要同时启用驱动器 api。
按照库下的说明转到 google 开发人员控制台并启用 google 驱动器 api。请稍等几分钟,然后重试。