标签:需要 步骤 evel tar 文件 cli 删除 读写权限 代码
如果直接使用的是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
标签:需要 步骤 evel tar 文件 cli 删除 读写权限 代码
原文地址:https://www.cnblogs.com/for-you/p/8984673.html