google sheets写入数据时报错:Request had insufficient authentication scopes
Posted for-you
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了google sheets写入数据时报错:Request had insufficient authentication scopes相关的知识,希望对你有一定的参考价值。
问题
如果直接使用的是google sheets官方示例文档quickstart.py,在写入数据是会报错:
Request had insufficient authentication scopes.
说明
google sheets api提供的权限有多种,具体查看authorizing中的scope说明表。
quickstart.py中使用的scope=‘https://www.googleapis.com/auth/spreadsheets.readonly‘
,如下代码段
SCOPES = 'https://www.googleapis.com/auth/spreadsheets.readonly'
CLIENT_SECRET_FILE = 'client_secret.json'
APPLICATION_NAME = 'Google Sheets API Python Quickstart'
只读权限,所以之前生成的credentials.json的权限是只读权限。
解决
步骤1:将代码中的scope修改为authorizing中的scope说明表中对应你想要的权限。
如,需要读写权限,修改scope:
scope = 'https://www.googleapis.com/auth/spreadsheets'
步骤2:然后,删除本地已有的credentials.json,然后运行写入数据的脚本,重新生成credentials.json文件,新生成的credentials.json就是读写权限都有的了。
注意:步骤2,很重要,很重要,很重要。
以上是关于google sheets写入数据时报错:Request had insufficient authentication scopes的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 Python 访问(读取、写入)Google Sheets 电子表格?
ElasticsearchES删除索引时报错“wildcard expressions or all indices are not allowed