我正在使用Google Drive API并且我的网络应用程序工作了一年多以前,直到几天前,我一直在我的控制台中收到此错误:
它在我的日志中给了我一个网址,打开后,它显示了这个:
{
"error": {
"errors": [
{
"domain": "global",
"reason": "insufficientFilePermissions",
"message": "The user does not have sufficient permissions for this file."
}
],
"code": 403,
"message": "The user does not have sufficient permissions for this file."
}
}
我在控制台中一直收到此错误:
{result: {…}, body: "{↵ "error": {↵ "errors": [↵ {↵ "domain": "gl…,↵ "code": 400,↵ "message": "Bad Request"↵ }↵}↵", headers: {…}, status: 400, statusText: null}
body
:
"{↵ "error": {↵ "errors": [↵ {↵ "domain": "global",↵ "reason": "badRequest",↵ "message": "Bad Request"↵ }↵ ],↵ "code": 400,↵ "message": "Bad Request"↵ }↵}↵
“
我在这里看了Google's Error Handling Guide以及其他答案。但是,尽管通过范围https://www.googleapis.com/auth/drive要求范围内的完全驱动器权限,我仍然无法解决此问题。我需要做的只是访问列表和删除文件,我不知道为什么我突然没有权限,尽管这已经工作了一年多。
任何帮助将不胜感激!