码迷,mamicode.com
首页 > 其他好文 > 详细

google sheets写入数据时报错:Request had insufficient authentication scopes

时间:2018-05-03 19:57:44      阅读:360      评论:0      收藏:0      [点我收藏+]

标签:需要   步骤   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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!