Google Drive API Error Daily Limit for Unauthenticated Use Exceeded(Google Drive API 错误已超出未经身份验证使用的每日限制)
问题描述
我在使用 Google API 时遇到错误.有权连接 Google Drive 并添加新工作表并将数据插入其中.
Im getting error on using Google API. having right to connect with Google Drive and add new sheet and insert data into it.
它一直工作到昨天,但是当我今天运行应用程序时.我收到错误:
It was working till yesterday but when i run the application today. Im getting error :
用户给出令牌并尝试访问 DRIVE API 以获取所有文件后出现错误
Error appears after users given token and tried to access the DRIVE API to get all the files
domain: "usageLimits"
extendedHelp: "https://code.google.com/apis/console"
message: "Daily Limit for Unauthenticated Use Exceeded. Continued use requires signup."
reason: "dailyLimitExceededUnreg"
我没有更改任何设置.我的应用程序访问令牌启用了以下 API.我是否必须添加/启用更多 API 才能使其工作.
I have not changed any settings. Following API are enables for my application access token. Do i have to add / enable more API to make it work.
推荐答案
问题出在获取访问令牌时.我没有提供正确的范围.当我将范围更改为
The problem was while getting access token. I was not providing correct scopes. When i changed the scope to
https://spreadsheets.google.com/feeds https://docs.google.com/feedshttps://www.googleapis.com/auth/drive.file
效果很好
这篇关于Google Drive API 错误已超出未经身份验证使用的每日限制的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Google Drive API 错误已超出未经身份验证使用的每日
基础教程推荐
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06
- 在for循环中使用setTimeout 2022-01-01
- 响应更改 div 大小保持纵横比 2022-01-01
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01
- 动态更新多个选择框 2022-01-01
- 悬停时滑动输入并停留几秒钟 2022-01-01
- 我什么时候应该在导入时使用方括号 2022-01-01
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01